[pypy-svn] r78516 - pypy/trunk/pypy/interpreter

fijal at codespeak.net fijal at codespeak.net
Sat Oct 30 13:32:51 CEST 2010


Author: fijal
Date: Sat Oct 30 13:32:49 2010
New Revision: 78516

Modified:
   pypy/trunk/pypy/interpreter/gateway.py
Log:
MAke those newstyle as well


Modified: pypy/trunk/pypy/interpreter/gateway.py
==============================================================================
--- pypy/trunk/pypy/interpreter/gateway.py	(original)
+++ pypy/trunk/pypy/interpreter/gateway.py	Sat Oct 30 13:32:49 2010
@@ -28,7 +28,7 @@
 # internal non-translatable parts: 
 import py
 
-class SignatureBuilder:
+class SignatureBuilder(object):
     "NOT_RPYTHON"
     def __init__(self, func=None, argnames=None, varargname=None,
                  kwargname=None, name = None):
@@ -51,7 +51,7 @@
 
 #________________________________________________________________
 
-class UnwrapSpecRecipe:
+class UnwrapSpecRecipe(object):
     "NOT_RPYTHON"
 
     bases_order = [Wrappable, W_Root, ObjSpace, Arguments, object]



More information about the Pypy-commit mailing list