Files
openide/python/testData/optimizeImports/caseInsensitiveOrderOfNamesInsideFromImports.after.py
Mikhail Golubev 841fcbc914 PY-20159 Add an option to make optimize imports case-insensitive
Both packages/module names and names of individual imported symbols in
"from" imports are sorted case-insensitively if it's enabled.
To keep things simple I decided not to replicate the exact scheme used
by isort to order names in "from" imports where they have different priority
depending on whether they are ALL_CAPS or CamelCased (check the issue for
related discussion).
2018-10-01 12:07:13 +03:00

3 lines
49 B
Python

from mod import var_a, var_Z
print(var_a, var_Z)