mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
13 lines
171 B
Python
13 lines
171 B
Python
from collections import (
|
|
deque \
|
|
# comment 1
|
|
as d,
|
|
OrderedDict as
|
|
# comment 2
|
|
od,
|
|
)
|
|
from collections import namedtuple
|
|
|
|
|
|
print(d, od, namedtuple)
|