[Python-checkins] r77094 - sandbox/trunk/2to3/lib2to3/fixes/fix_callable.py

benjamin.peterson python-checkins at python.org
Mon Dec 28 21:45:13 CET 2009


Author: benjamin.peterson
Date: Mon Dec 28 21:45:13 2009
New Revision: 77094

Log:
deuglify field names

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

Modified: sandbox/trunk/2to3/lib2to3/fixes/fix_callable.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/fixes/fix_callable.py	(original)
+++ sandbox/trunk/2to3/lib2to3/fixes/fix_callable.py	Mon Dec 28 21:45:13 2009
@@ -7,9 +7,8 @@
 collections import if needed."""
 
 # Local imports
-from .. import pytree
-from .. import fixer_base
-from ..fixer_util import Call, Name, String, Attr, touch_import
+from lib2to3 import fixer_base
+from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
 
 class FixCallable(fixer_base.BaseFix):
 


More information about the Python-checkins mailing list