Files
openide/python/testData/optimizeImports/orderNamesInsideFromImport.after.py
Mikhail Golubev 84381c7273 PY-18792 Add several new options for Optimize Imports in Python
Namely allow to:
* disable alphabetical ordering of imports
* order individual imported names inside "from" import (PY-19292)
* combine multiple "from" imports with the same source (PY-14176)
2016-06-15 19:34:11 +03:00

4 lines
60 B
Python

from module import A as Z, C, a, b, c
print(C, Z, a, b, c)