[pypy-svn] r72002 - pypy/trunk/pypy/annotation

fijal at codespeak.net fijal at codespeak.net
Wed Mar 10 00:26:12 CET 2010


Author: fijal
Date: Wed Mar 10 00:26:11 2010
New Revision: 72002

Modified:
   pypy/trunk/pypy/annotation/model.py
Log:
Make someobject an object (to help pypy-c translate.py)


Modified: pypy/trunk/pypy/annotation/model.py
==============================================================================
--- pypy/trunk/pypy/annotation/model.py	(original)
+++ pypy/trunk/pypy/annotation/model.py	Wed Mar 10 00:26:11 2010
@@ -40,7 +40,7 @@
 DEBUG = False    # set to False to disable recording of debugging information
 TLS = tlsobject()
 
-class SomeObject:
+class SomeObject(object):
     """The set of all objects.  Each instance stands
     for an arbitrary object about which nothing is known."""
     __metaclass__ = extendabletype



More information about the Pypy-commit mailing list