[pypy-svn] r31816 - pypy/dist/pypy/translator/stackless

mwh at codespeak.net mwh at codespeak.net
Wed Aug 30 01:03:46 CEST 2006


Author: mwh
Date: Wed Aug 30 01:03:45 2006
New Revision: 31816

Modified:
   pypy/dist/pypy/translator/stackless/transform.py
Log:
ugh, that shouldn't be there


Modified: pypy/dist/pypy/translator/stackless/transform.py
==============================================================================
--- pypy/dist/pypy/translator/stackless/transform.py	(original)
+++ pypy/dist/pypy/translator/stackless/transform.py	Wed Aug 30 01:03:45 2006
@@ -718,7 +718,7 @@
         realrettype = op.result.concretetype
         for i, a in enumerate(noexclink.args):
             if a is op.result:
-                noexclink.args[i] = model.Constant(realrettype._defl(example=True), realrettype)
+                noexclink.args[i] = model.Constant(realrettype._defl(), realrettype)
         block.recloseblock(*((noexclink,) + block.exits[1:]))        
 
     def insert_unwind_handling(self, block, i):



More information about the Pypy-commit mailing list