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

arigo at codespeak.net arigo at codespeak.net
Tue Apr 25 14:50:53 CEST 2006


Author: arigo
Date: Tue Apr 25 14:50:51 2006
New Revision: 26332

Modified:
   pypy/dist/pypy/interpreter/baseobjspace.py
   pypy/dist/pypy/interpreter/typedef.py
Log:
Comment this out temporarily (it breaks translation of PyPy).


Modified: pypy/dist/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/dist/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/dist/pypy/interpreter/baseobjspace.py	Tue Apr 25 14:50:51 2006
@@ -193,7 +193,7 @@
 
         modules.extend(['unicodedata', '_codecs',
                          'array', 'marshal', 'errno', 'math', '_sre'])
-	modules.append('_pickle_support')
+	#modules.append('_pickle_support')
 
         if self.options.nofaking:
             modules.append('posix')

Modified: pypy/dist/pypy/interpreter/typedef.py
==============================================================================
--- pypy/dist/pypy/interpreter/typedef.py	(original)
+++ pypy/dist/pypy/interpreter/typedef.py	Tue Apr 25 14:50:51 2006
@@ -543,10 +543,10 @@
     __eq__       = interp2app(Cell.descr__eq__,
                               unwrap_spec=['self', ObjSpace, W_Root]),
     __ne__       = descr_generic_ne,
-    __reduce__   = interp2app(Cell.descr__reduce__, 
-                              unwrap_spec=['self', ObjSpace]),
-    __setstate__ = interp2app(Cell.descr__setstate__,
-                              unwrap_spec=['self', ObjSpace, W_Root]), 
+##    __reduce__   = interp2app(Cell.descr__reduce__, 
+##                              unwrap_spec=['self', ObjSpace]),
+##    __setstate__ = interp2app(Cell.descr__setstate__,
+##                              unwrap_spec=['self', ObjSpace, W_Root]), 
 )
 
 Ellipsis.typedef = TypeDef("Ellipsis", 



More information about the Pypy-commit mailing list