mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +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)
6 lines
84 B
Python
6 lines
84 B
Python
from module import B as Z
|
|
from module import A
|
|
from module import C
|
|
|
|
print(A, C, Z)
|