[Python-checkins] r63790 - sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py

brett.cannon python-checkins at python.org
Thu May 29 21:13:52 CEST 2008


Author: brett.cannon
Date: Thu May 29 21:13:51 2008
New Revision: 63790

Log:
Add a fixer for UserList.

Closes issue #2878. Thanks to Quentin Gallet-Gilles for the patch.


Modified:
   sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py	Thu May 29 21:13:51 2008
@@ -266,6 +266,7 @@
                           "threading_setup", "threading_cleanup", "reap_children"]),
            'commands': ('subprocess', ['getstatusoutput', 'getoutput']),
            'UserString' : ('collections', ['UserString']),
+           'UserList' : ('collections', ['UserList']),
 }
 
 


More information about the Python-checkins mailing list