mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 23:21:09 +07:00
GitOrigin-RevId: 9cad837e708f3c9e52abea59d9e239371cb515bc
13 lines
197 B
Python
13 lines
197 B
Python
__author__ = "akniazev"
|
|
|
|
from datetime import date
|
|
from sys import path
|
|
from foo import bar
|
|
from collections import OrderedDict
|
|
from datetime import time
|
|
|
|
|
|
date(1, 1, 1)
|
|
time(1)
|
|
OrderedDict()
|
|
bar() |