mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
19 lines
215 B
Python
19 lines
215 B
Python
from module import foo
|
|
from module import (
|
|
foo,
|
|
bar,
|
|
)
|
|
from module import (
|
|
foo,
|
|
bar,
|
|
)
|
|
from module import (
|
|
foo,
|
|
bar, # comment
|
|
)
|
|
from module import (
|
|
foo,
|
|
|
|
bar,
|
|
)
|