mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
13 lines
167 B
Python
13 lines
167 B
Python
global_var = 'spam'
|
|
|
|
|
|
def enclosing(p1, p2):
|
|
x = 42
|
|
|
|
def lo<caret>cal(p):
|
|
def nested():
|
|
print(p, x)
|
|
|
|
print(p1, p)
|
|
|
|
local('foo') |