Author: Maciej Fijalkowski <[email protected]>
Branch:
Changeset: r61528:51827b238db8
Date: 2013-02-21 11:43 +0200
http://bitbucket.org/pypy/pypy/changeset/51827b238db8/
Log: make sure we don't collect
diff --git a/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
b/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
--- a/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
+++ b/rpython/jit/backend/x86/test/test_zrpy_releasegil.py
@@ -16,7 +16,7 @@
def define_simple(self):
class Glob:
def __init__(self):
- self.events = []
+ glob.event = 0
glob = Glob()
#
@@ -24,7 +24,7 @@
rffi.CCHARP)
def func():
- glob.events.append("x")
+ glob.event += 1
def before(n, x):
invoke_around_extcall(func, func)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit