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

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Jul 7 20:10:57 CEST 2008


Author: cfbolz
Date: Mon Jul  7 20:10:56 2008
New Revision: 56359

Modified:
   pypy/dist/pypy/module/_pickle_support/maker.py
Log:
Grr, nonsense. This stuff doesn't seem to be properly tested either.


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	Mon Jul  7 20:10:56 2008
@@ -63,7 +63,7 @@
     # XXX I don't get this? why isn't pycode actually used for anything?
     new_frame = instantiate(space.FrameClass)   # XXX fish
     return space.wrap(new_frame)
-frame_new.unwrap_spec = [ObjSpace, PyCode]
+frame_new.unwrap_spec = [ObjSpace, Arguments]
 
 def traceback_new(space):
     tb = instantiate(PyTraceback)



More information about the Pypy-commit mailing list