mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 9cad837e708f3c9e52abea59d9e239371cb515bc
15 lines
236 B
Python
15 lines
236 B
Python
from __future__ import print_function
|
|
|
|
__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() |