mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-15342 Initial attempt to handle global references to moved symbol
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import b
|
||||
|
||||
|
||||
def func():
|
||||
b.VAR += 1
|
||||
@@ -0,0 +1 @@
|
||||
VAR = 42
|
||||
@@ -0,0 +1,6 @@
|
||||
VAR = 42
|
||||
|
||||
|
||||
def func():
|
||||
global VAR
|
||||
VAR += 1
|
||||
Reference in New Issue
Block a user