[Python-checkins] r65003 - sandbox/trunk/2to3/README

brett.cannon python-checkins at python.org
Wed Jul 16 07:13:25 CEST 2008


Author: brett.cannon
Date: Wed Jul 16 07:13:24 2008
New Revision: 65003

Log:
Update the list of fixers to include fix_imports2 and fix_urllib.


Modified:
   sandbox/trunk/2to3/README

Modified: sandbox/trunk/2to3/README
==============================================================================
--- sandbox/trunk/2to3/README	(original)
+++ sandbox/trunk/2to3/README	Wed Jul 16 07:13:24 2008
@@ -69,6 +69,9 @@
 
 * **fix_imports** - Fix (some) incompatible imports.
 
+* **fix_imports2** - Fix (some) incompatible imports that must run after
+                     **test_imports**.
+
 * **fix_input** - "input()" -> "eval(input())" (PEP 3111).
 
 * **fix_intern** - "intern(x)" -> "sys.intern(x)".
@@ -101,6 +104,8 @@
   lambda declarations (PEP 3113).
   
 * **fix_unicode** - convert, e.g., u"..." to "...", unicode(x) to str(x), etc.
+
+* **fix_urllib** - Fix imports for urllib and urllib2.
   
 * **fix_xrange** - "xrange()" -> "range()".
 


More information about the Python-checkins mailing list