[pypy-svn] r79070 - pypy/trunk/pypy/rpython

fijal at codespeak.net fijal at codespeak.net
Sun Nov 14 11:04:27 CET 2010


Author: fijal
Date: Sun Nov 14 11:04:26 2010
New Revision: 79070

Modified:
   pypy/trunk/pypy/rpython/annlowlevel.py
Log:
make MixLevelHelperAnnotator a newstyle class

Modified: pypy/trunk/pypy/rpython/annlowlevel.py
==============================================================================
--- pypy/trunk/pypy/rpython/annlowlevel.py	(original)
+++ pypy/trunk/pypy/rpython/annlowlevel.py	Sun Nov 14 11:04:26 2010
@@ -136,7 +136,7 @@
         return funcdesc.cachedgraph(TYPE, alt_name=valid_identifier(alt_name))
 
 
-class MixLevelHelperAnnotator:
+class MixLevelHelperAnnotator(object):
 
     def __init__(self, rtyper):
         self.rtyper = rtyper



More information about the Pypy-commit mailing list