[pypy-svn] r15344 - pypy/dist/pypy/objspace/flow

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Jul 29 14:53:24 CEST 2005


Author: cfbolz
Date: Fri Jul 29 14:53:23 2005
New Revision: 15344

Modified:
   pypy/dist/pypy/objspace/flow/model.py
Log:
link.copy needs to copy llexitcase as well, if it's there.
This doesn't fix our current problem, though.


Modified: pypy/dist/pypy/objspace/flow/model.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/model.py	(original)
+++ pypy/dist/pypy/objspace/flow/model.py	Fri Jul 29 14:53:23 2005
@@ -108,6 +108,8 @@
         newlink.prevblock = self.prevblock
         newlink.last_exception = rename(self.last_exception)
         newlink.last_exc_value = rename(self.last_exc_value)
+        if hasattr(self, 'llexitcase'):
+            newlink.llexitcase = self.llexitcase
         return newlink
 
     def __repr__(self):



More information about the Pypy-commit mailing list