[Python-checkins] r80673 - peps/trunk/pep-0291.txt

jeffrey.yasskin python-checkins at python.org
Sat May 1 01:29:59 CEST 2010


Author: jeffrey.yasskin
Date: Sat May  1 01:29:59 2010
New Revision: 80673

Log:
Mark 2to3 as compatible with python-2.5 per the discussion in issue 8566.


Modified:
   peps/trunk/pep-0291.txt

Modified: peps/trunk/pep-0291.txt
==============================================================================
--- peps/trunk/pep-0291.txt	(original)
+++ peps/trunk/pep-0291.txt	Sat May  1 01:29:59 2010
@@ -82,16 +82,19 @@
 
           2.4      with statement, conditional expressions,
                    combined try/except/finally, relative imports,
-                   yield expressions or generator.throw/send/close()
+                   yield expressions or generator.throw/send/close(),
+                   plus all features below
 
-          2.5      ???
+          2.5      with statement without from __future__ import,
+                   io module, str.format(), except as,
+                   bytes, b'' literals, property.setter/deleter
 
 
 Backward Compatible Packages, Modules, and Tools
 
     Package/Module     Maintainer(s)          Python Version     Notes
     --------------     -------------          --------------     -----
-    2to3               Benjamin Peterson           2.6
+    2to3               Benjamin Peterson           2.5
     bsddb              Greg Smith                  2.1
                        Barry Warsaw
     compiler           Jeremy Hylton               2.1


More information about the Python-checkins mailing list