~pythonregexp2.7/python/issue2636-09-01+10

« back to all changes in this revision

Viewing changes to Lib/lib2to3/fixes/fix_callable.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-22 21:39:45 UTC
  • mfrom: (39055.1.33 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080922213945-23717m5eiqpamcyn
Merged in changes from the Single-Loop Engine branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
# Local imports
9
9
from .. import pytree
10
 
from . import basefix
11
 
from .util import Call, Name, String
 
10
from .. import fixer_base
 
11
from ..fixer_util import Call, Name, String
12
12
 
13
 
class FixCallable(basefix.BaseFix):
 
13
class FixCallable(fixer_base.BaseFix):
14
14
 
15
15
    # Ignore callable(*args) or use of keywords.
16
16
    # Either could be a hint that the builtin callable() is not being used.