mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 17:09:38 +07:00
I reverted changes in 235f566771e9bd83c5b04e47c170501830b5c66a and modified PyUndefinedGlobalInspection instead, to restore global variable discovery in Scope methods GitOrigin-RevId: 6b432b2c2364cd94dc8463ea773a02350d9e915f
7 lines
73 B
Python
7 lines
73 B
Python
bar = "something"
|
|
|
|
|
|
def foo():
|
|
global bar
|
|
bar = "something else"
|