mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 10:22:24 +07:00
10 lines
129 B
Python
10 lines
129 B
Python
from sys import path
|
|
|
|
from main import f, MyClass, CONST
|
|
|
|
|
|
def g():
|
|
f()
|
|
print(MyClass())
|
|
print(path)
|
|
print(CONST) |