mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
24 lines
298 B
Python
24 lines
298 B
Python
from module import symbol as alias
|
|
|
|
CONST = 42
|
|
|
|
|
|
# x is visible externally in Python 2
|
|
[x for x in range(3)]
|
|
|
|
for i in range(3):
|
|
pass
|
|
|
|
if True:
|
|
class C:
|
|
class Inner:
|
|
pass
|
|
|
|
def method(self):
|
|
pass
|
|
|
|
|
|
def outer_func():
|
|
def inner_func():
|
|
pass
|