mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
Fix test for determined behaviour with IronPython
This commit is contained in:
@@ -9,11 +9,12 @@ def bar(y):
|
||||
z = 100 + y
|
||||
print("Z=%d"%z)
|
||||
|
||||
t = None
|
||||
def foo(x):
|
||||
global t
|
||||
y = x + 1
|
||||
print("Y=%d"%y)
|
||||
|
||||
global t
|
||||
t = threading.Thread(target=bar, args=(y,))
|
||||
t.start()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user