mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
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)
4 lines
60 B
Python
4 lines
60 B
Python
from module import A as Z, C, a, b, c
|
|
|
|
print(C, Z, a, b, c)
|