r63790 - sandbox/trunk/2to3/lib2to3/fixes/fix_imports.py
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']), }
participants (1)
-
brett.cannon