[pypy-svn] r8946 - pypy/dist/pypy/objspace

sanxiyn at codespeak.net sanxiyn at codespeak.net
Mon Feb 7 08:58:50 CET 2005


Author: sanxiyn
Date: Mon Feb  7 08:58:50 2005
New Revision: 8946

Modified:
   pypy/dist/pypy/objspace/trivial.py
Log:
Pointless fix to TrivialObjSpace to run.


Modified: pypy/dist/pypy/objspace/trivial.py
==============================================================================
--- pypy/dist/pypy/objspace/trivial.py	(original)
+++ pypy/dist/pypy/objspace/trivial.py	Mon Feb  7 08:58:50 2005
@@ -98,6 +98,10 @@
         self.w_False = False
         self.w_NotImplemented = NotImplemented
         self.w_Ellipsis = Ellipsis
+
+        self.w_classobj = types.ClassType
+        self.w_instance = types.InstanceType
+
         newstuff = {"False": self.w_False,
                     "True" : self.w_True,
                     "NotImplemented" : self.w_NotImplemented,



More information about the Pypy-commit mailing list