Home
last modified time | relevance | path

Searched refs:touch_import (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_reduce.py11 from lib2to3.fixer_util import touch_import
35 touch_import('functools', 'reduce', node)
Dfix_intern.py10 from ..fixer_util import ImportAndCall, touch_import
40 touch_import(None, 'sys', node)
Dfix_reload.py7 from ..fixer_util import ImportAndCall, touch_import
37 touch_import(None, 'importlib', node)
Dfix_operator.py16 from lib2to3.fixer_util import Call, Name, String, touch_import
83 touch_import(None, module, node)
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_reduce.py11 from lib2to3.fixer_util import touch_import
35 touch_import(u'functools', u'reduce', node)
Dfix_intern.py11 from ..fixer_util import Name, Attr, touch_import
55 touch_import(None, u'sys', node)
Dfix_operator.py14 from lib2to3.fixer_util import Call, Name, String, touch_import
82 touch_import(None, module, node)
/external/python/cpython3/Lib/lib2to3/tests/
Dtest_util.py553 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/
Dtest_util.py556 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/
Dfixer_util.py294 def touch_import(package, name, node): function
/external/python/cpython3/Lib/lib2to3/
Dfixer_util.py315 def touch_import(package, name, node): function