[pypy-commit] pypy stm-gc: A default value for this attribute is really needed.

arigo noreply at buildbot.pypy.org
Sun Apr 29 14:35:57 CEST 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: stm-gc
Changeset: r54808:6e50686e9ba9
Date: 2012-04-29 14:32 +0200
http://bitbucket.org/pypy/pypy/changeset/6e50686e9ba9/

Log:	A default value for this attribute is really needed.

diff --git a/pypy/rlib/rstm.py b/pypy/rlib/rstm.py
--- a/pypy/rlib/rstm.py
+++ b/pypy/rlib/rstm.py
@@ -20,7 +20,7 @@
 
 class Transaction(object):
     _next_transaction = None
-    #_scheduled = False         # for debugging
+    _scheduled = False         # for debugging
 
     def run(self):
         # subclasses can access 'self.retry_counter' here


More information about the pypy-commit mailing list