mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
16 lines
168 B
Python
16 lines
168 B
Python
from sys import path
|
|
|
|
CONST = 42
|
|
|
|
|
|
class MyClass:
|
|
pass
|
|
|
|
|
|
def f():
|
|
def <caret>g():
|
|
f()
|
|
print(MyClass())
|
|
print(path)
|
|
print(CONST)
|