[pypy-commit] pypy stm-gc-2: Fix

arigo noreply at buildbot.pypy.org
Wed Apr 17 17:30:38 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc-2
Changeset: r63450:1b1193331a45
Date: 2013-04-17 17:23 +0200
http://bitbucket.org/pypy/pypy/changeset/1b1193331a45/

Log:	Fix

diff --git a/rpython/memory/gc/test/test_stmshared.py b/rpython/memory/gc/test/test_stmshared.py
--- a/rpython/memory/gc/test/test_stmshared.py
+++ b/rpython/memory/gc/test/test_stmshared.py
@@ -15,6 +15,10 @@
         self._object_sizes[obj] = size
     def get_size_incl_hash(self, obj):
         return self._object_sizes[obj]
+    def acquire_global_lock(self):
+        pass
+    def release_global_lock(self):
+        pass
 
 
 def test_simple():


More information about the pypy-commit mailing list