Home
last modified time | relevance | path

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

/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/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