mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
8 lines
261 B
Python
8 lines
261 B
Python
def foo():
|
|
global <weak_warning descr="Global variable 'var' is undefined at the module level">var</weak_warning>
|
|
var = 1
|
|
|
|
|
|
def bar():
|
|
global <weak_warning descr="Global variable 'var' is undefined at the module level">var</weak_warning>
|
|
var = 2 |