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

tismer at codespeak.net tismer at codespeak.net
Sat Jun 3 17:18:46 CEST 2006


Author: tismer
Date: Sat Jun  3 17:18:45 2006
New Revision: 28174

Modified:
   pypy/dist/pypy/interpreter/pyframe.py
Log:
added some YYY to the XXX about frame pickling

Modified: pypy/dist/pypy/interpreter/pyframe.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyframe.py	(original)
+++ pypy/dist/pypy/interpreter/pyframe.py	Sat Jun  3 17:18:45 2006
@@ -105,6 +105,9 @@
             ]
 
         #XXX what to do with valuestack and blockstack here?
+        #YYY well, we build the valuestack as a tuple (with a marker for NULL objects)
+        #YYY and we pickle the blockstack as well.
+        #YYY see frameobject_reduce line 722 in prickelpit.c in the stackless distro.
             
         return space.newtuple([new_inst, space.newtuple(tup)])
 



More information about the Pypy-commit mailing list