[pypy-svn] r27268 - pypy/dist/pypy/module/_pickle_support

ericvrp at codespeak.net ericvrp at codespeak.net
Tue May 16 13:42:31 CEST 2006


Author: ericvrp
Date: Tue May 16 13:42:30 2006
New Revision: 27268

Modified:
   pypy/dist/pypy/module/_pickle_support/maker.py
Log:
Do not remove this raise or else translation will fail


Modified: pypy/dist/pypy/module/_pickle_support/maker.py
==============================================================================
--- pypy/dist/pypy/module/_pickle_support/maker.py	(original)
+++ pypy/dist/pypy/module/_pickle_support/maker.py	Tue May 16 13:42:30 2006
@@ -37,7 +37,7 @@
 
 #XXX this does not work yet
 def dictiter_new(space, w_dictitertype, __args__=None):
-    #raise Exception('No dictiter_new (pickle support) yet')
+    raise Exception('No dictiter_new (pickle support) yet')
     print "dictiter_new here 0)", space, w_dictitertype, __args__
     print "XXX", str(dictiter_typedef)
     if False:



More information about the Pypy-commit mailing list