[pypy-svn] r32569 - pypy/dist/pypy/interpreter

pedronis at codespeak.net pedronis at codespeak.net
Thu Sep 21 20:43:21 CEST 2006


Author: pedronis
Date: Thu Sep 21 20:43:19 2006
New Revision: 32569

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
Log:
no attrs expected on Wrappable either



Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Thu Sep 21 20:43:19 2006
@@ -87,6 +87,8 @@
 class Wrappable(W_Root):
     """A subclass of Wrappable is an internal, interpreter-level class
     that can nevertheless be exposed at application-level by space.wrap()."""
+    __slots__ = ()
+
     def __spacebind__(self, space):
         return self
 



More information about the Pypy-commit mailing list