Python 2.7 Released
05 Jul 2010
The production version Python 2.7 is now available. Several features from Python 3.1 have been backported including language features such as the syntax for set literals, dictionary and set comprehensions, and multiple context managers in a single with statement.
These are great features of Python 3 and I’m sure I’ll use them in my Python 2.7 code, but I can’t help wondering if they also reduce the motivation for developers to move to Python 3. Are there enough compelling Python 3-only features to help promote the “upsell”?
safe :: 05 Jul 2010 ::
Programming :: ::
1 Comment »
Tags: python, python3

A killer feature of Python 3 which won’t appear in Python 2 is the cleaning up of text v. binary data. A
stris now unicode and encoded text is pure binary data stored in abytestype.Rob V