mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
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).
3 lines
49 B
Python
3 lines
49 B
Python
from mod import var_a, var_Z
|
|
|
|
print(var_a, var_Z) |