[Python-checkins] r43575 - python/trunk/Lib/__future__.py

neal.norwitz python-checkins at python.org
Mon Apr 3 08:58:51 CEST 2006


Author: neal.norwitz
Date: Mon Apr  3 08:58:51 2006
New Revision: 43575

Modified:
   python/trunk/Lib/__future__.py
Log:
I could have sworn this was part of the change to not abbreviate ABSOLUTE

Modified: python/trunk/Lib/__future__.py
==============================================================================
--- python/trunk/Lib/__future__.py	(original)
+++ python/trunk/Lib/__future__.py	Mon Apr  3 08:58:51 2006
@@ -109,7 +109,7 @@
 
 absolute_import = _Feature((2, 5, 0, "alpha", 1),
                            (2, 7, 0, "alpha", 0),
-                           CO_FUTURE_ABSIMPORT)
+                           CO_FUTURE_ABSOLUTE_IMPORT)
 
 with_statement = _Feature((2, 5, 0, "alpha", 1),
                           (2, 6, 0, "alpha", 0),


More information about the Python-checkins mailing list