[pypy-svn] r78721 - pypy/trunk/pypy/interpreter
fijal at codespeak.net
fijal at codespeak.net
Fri Nov 5 11:15:18 CET 2010
Author: fijal
Date: Fri Nov 5 11:15:12 2010
New Revision: 78721
Modified:
pypy/trunk/pypy/interpreter/executioncontext.py
Log:
make AbstractActionFlag a newstyle class
Modified: pypy/trunk/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/trunk/pypy/interpreter/executioncontext.py (original)
+++ pypy/trunk/pypy/interpreter/executioncontext.py Fri Nov 5 11:15:12 2010
@@ -320,7 +320,7 @@
" traceback and see where this one comes from :-)")
-class AbstractActionFlag:
+class AbstractActionFlag(object):
"""This holds the global 'action flag'. It is a single bitfield
integer, with bits corresponding to AsyncAction objects that need to
be immediately triggered. The correspondance from bits to
More information about the Pypy-commit
mailing list