Preserve qualified import style of usages for moved element

This commit is contained in:
Mikhail Golubev
2015-03-30 20:20:59 +03:00
parent 9ced9aef9b
commit 64a451775a
2 changed files with 3 additions and 4 deletions
@@ -1,6 +1,6 @@
import a
from b import f
import b
def main():
print(f(42))
print(b.f(42))