mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
190 B
Python
12 lines
190 B
Python
from __future__ import print_function
|
|
|
|
from collections import OrderedDict
|
|
from datetime import date
|
|
from datetime import time
|
|
|
|
from foo import bar
|
|
|
|
date(1, 1, 1)
|
|
time(1)
|
|
OrderedDict()
|
|
bar() |