Home
last modified time | relevance | path

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

/third_party/python/Lib/lib2to3/fixes/
Dfix_reduce.py11 from lib2to3.fixer_util import touch_import
35 touch_import('functools', 'reduce', node)
Dfix_reload.py7 from ..fixer_util import ImportAndCall, touch_import
35 touch_import(None, 'importlib', node)
Dfix_intern.py10 from ..fixer_util import ImportAndCall, touch_import
38 touch_import(None, 'sys', node)
Dfix_operator.py16 from lib2to3.fixer_util import Call, Name, String, touch_import
83 touch_import(None, module, node)
/third_party/python/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)
/third_party/python/Lib/lib2to3/
Dfixer_util.py315 def touch_import(package, name, node): function