mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
14 lines
235 B
Python
14 lines
235 B
Python
__author__ = "akniazev"
|
|
|
|
from __future__ import print_function
|
|
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() |