mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
11 lines
156 B
Python
11 lines
156 B
Python
__author__ = "akniazev"
|
|
|
|
from collections import OrderedDict
|
|
from datetime import date, time
|
|
|
|
from foo import bar
|
|
|
|
date(1, 1, 1)
|
|
time(1)
|
|
OrderedDict()
|
|
bar() |