Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python.': 0.02; '2.3,': 0.09; 'correct,': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'jan': 0.12; 'project,': 0.12; 'ecosystem': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'ought': 0.16; 'wrote:': 0.18; 'library': 0.18; 'app': 0.19; '(the': 0.22; 'cc:addr:python.org': 0.22; 'subject:Code': 0.24; 'fine': 0.24; 'versions': 0.24; 'cc:2**0': 0.24; 'least': 0.26; 'supported': 0.26; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'converting': 0.30; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'that.': 0.31; "d'aprano": 0.31; 'python).': 0.31; 'steven': 0.31; 'run': 0.32; 'beginning': 0.33; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'version': 0.36; '14,': 0.36; 'subject:?': 0.36; 'should': 0.36; 'example,': 0.37; 'project': 0.37; 'stable': 0.38; 'rather': 0.38; 'does': 0.39; 'even': 0.60; "you're": 0.61; 'save': 0.62; 'reached': 0.63; 'commercial': 0.71; '2.3.': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=el38HtiEkO09L3/1m2t0OpNS0ovp8ltLi5jiqfosyaU=; b=pyhwIAKq1QjZd2z6mt/IxRzeqFujvQHzEh49MGUzsnxvLNa357d2MvYWSAnCcSRpkC A5FsihqyNNEvnbPTd+l4je4//MW9WFKIAPSXZ2fWadh6+SQdxBz1o1nDBsETvTcEbbru 1Nz1kv0hCl7UyQ9rb0h2piiwDEAWPI4yZw07/gcNecQUIOBpsf+I5lSWWa2cQqpUpb2H gV5Pq3MrAIa4cwKc9LcQq+0NlDD6fTZAY9AwwXgYroul+uoQxVv8Pfoyf107dN275rZf 1L/gVYvAonT8pufIwPeJFCNZFlWg+oQwcTUJlEG6klUjhV97GR21Juxv0SlnVhNwbC7M bocA== MIME-Version: 1.0 X-Received: by 10.66.129.133 with SMTP id nw5mr32676025pab.98.1389656055925; Mon, 13 Jan 2014 15:34:15 -0800 (PST) In-Reply-To: <52d45008$0$6599$c3e8da3$5496439d@news.astraweb.com> References: <13BCC15D-B1E0-4AB2-9641-673D5B1B6FDD@gmail.com> <52d45008$0$6599$c3e8da3$5496439d@news.astraweb.com> Date: Tue, 14 Jan 2014 10:34:15 +1100 Subject: Re: Code review? From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389656059 news.xs4all.nl 2879 [2001:888:2000:d::a6]:59469 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63867 On Tue, Jan 14, 2014 at 7:43 AM, Steven D'Aprano wrote: > On Tue, 14 Jan 2014 03:40:25 +1100, Chris Angelico wrote: > >> Incidentally, is there a reason you're using Python 2.6? You should be >> able to upgrade at least to 2.7, and Flask ought to work fine on 3.3 >> (the current stable Python). If it's the beginning of your project, and >> you have nothing binding you to Python 2, go with Python 3. Converting a >> small project now will save you the job of converting a big project in >> ten years' time > > Everything you say is correct, but remember that there is a rather large > ecosystem of people writing code to run on servers where the supported > version of Python is 2.6, 2.5, 2.4 and even 2.3. RedHat, for example, > still has at least one version of RHEL still under commercial support > where the system Python is 2.3, at least that was the case a few months > back, it may have reached end-of-life by now. But 2.4 will definitely > still be under support. Pledging that your app will run on the system Python of RHEL is something that binds you to a particular set of versions of Python. It's not just library support that does that. ChrisA