[pypy-commit] pypy stm-gc: Kill _alloc_nonmovable_ here.

arigo noreply at buildbot.pypy.org
Sun Feb 19 14:10:34 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r52631:c7d3b90302f2
Date: 2012-02-19 14:10 +0100
http://bitbucket.org/pypy/pypy/changeset/c7d3b90302f2/

Log:	Kill _alloc_nonmovable_ here.

diff --git a/pypy/module/transaction/interp_transaction.py b/pypy/module/transaction/interp_transaction.py
--- a/pypy/module/transaction/interp_transaction.py
+++ b/pypy/module/transaction/interp_transaction.py
@@ -151,7 +151,6 @@
 
 
 class AbstractPending(object):
-    _alloc_nonmovable_ = True
 
     def register(self):
         """Register this AbstractPending instance in the pending list
diff --git a/pypy/translator/stm/test/targetdemo.py b/pypy/translator/stm/test/targetdemo.py
--- a/pypy/translator/stm/test/targetdemo.py
+++ b/pypy/translator/stm/test/targetdemo.py
@@ -17,7 +17,7 @@
 glob = Global()
 
 class Arg:
-    _alloc_nonmovable_ = True     # XXX kill me
+    pass
 
 
 def add_at_end_of_chained_list(arg, retry_counter):


More information about the pypy-commit mailing list