Home | History | Annotate | Download | only in fixes

Lines Matching refs:imp

42     import_from< 'from' imp=any 'import' ['('] any [')'] >

44 import_name< 'import' imp=any >
54 imp = results['imp']
61 while not hasattr(imp, 'value'):
62 imp = imp.children[0]
63 if self.probably_a_local_import(imp.value):
64 imp.value = u"." + imp.value
65 imp.changed()
69 for mod_name in traverse_imports(imp):
81 new = FromImport(u".", [imp])