mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
Now nonlocal/global target expressions gets type from its original reference. GitOrigin-RevId: 2af93318bd0a1e978e9251e38ec2d6b218a021ed
9 lines
88 B
Python
9 lines
88 B
Python
x = [1]
|
|
|
|
|
|
def fun():
|
|
x = False
|
|
|
|
def fun2():
|
|
global x
|
|
x.append(2) |