[pypy-svn] r10633 - pypy/dist/pypy/objspace/std

pedronis at codespeak.net pedronis at codespeak.net
Thu Apr 14 19:13:57 CEST 2005


Author: pedronis
Date: Thu Apr 14 19:13:56 2005
New Revision: 10633

Modified:
   pypy/dist/pypy/objspace/std/objspace.py
Log:
oops (Thanks Holger)



Modified: pypy/dist/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/std/objspace.py	(original)
+++ pypy/dist/pypy/objspace/std/objspace.py	Thu Apr 14 19:13:56 2005
@@ -208,7 +208,7 @@
         return ft(self, x)
     wrap._specialize_ = "argtypes"
 
-    def wrap_exception_cls(x):
+    def wrap_exception_cls(self, x):
         """NOT_RPYTHON"""
         if hasattr(self, 'w_' + x.__name__):
             w_result = getattr(self, 'w_' + x.__name__)            



More information about the Pypy-commit mailing list