Searched refs:touch_import (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_reduce.py | 11 from lib2to3.fixer_util import touch_import 35 touch_import('functools', 'reduce', node)
|
D | fix_intern.py | 10 from ..fixer_util import ImportAndCall, touch_import 40 touch_import(None, 'sys', node)
|
D | fix_reload.py | 7 from ..fixer_util import ImportAndCall, touch_import 37 touch_import(None, 'importlib', node)
|
D | fix_operator.py | 16 from lib2to3.fixer_util import Call, Name, String, touch_import 83 touch_import(None, module, node)
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_reduce.py | 11 from lib2to3.fixer_util import touch_import 35 touch_import(u'functools', u'reduce', node)
|
D | fix_intern.py | 11 from ..fixer_util import Name, Attr, touch_import 55 touch_import(None, u'sys', node)
|
D | fix_operator.py | 14 from lib2to3.fixer_util import Call, Name, String, touch_import 82 touch_import(None, module, node)
|
/external/python/cpython3/Lib/lib2to3/tests/ |
D | test_util.py | 553 fixer_util.touch_import(None, "foo", node) 558 fixer_util.touch_import(None, "foo", node) 563 fixer_util.touch_import(None, "foo", node) 568 fixer_util.touch_import("html", "escape", node) 573 fixer_util.touch_import(None, "cgi", node)
|
/external/python/cpython2/Lib/lib2to3/tests/ |
D | test_util.py | 556 fixer_util.touch_import(None, "foo", node) 561 fixer_util.touch_import(None, "foo", node) 566 fixer_util.touch_import(None, "foo", node) 571 fixer_util.touch_import("html", "escape", node) 576 fixer_util.touch_import(None, "cgi", node)
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 294 def touch_import(package, name, node): function
|
/external/python/cpython3/Lib/lib2to3/ |
D | fixer_util.py | 315 def touch_import(package, name, node): function
|