Author: Armin Rigo <[email protected]>
Branch:
Changeset: r68789:62c039ea5e31
Date: 2014-01-20 17:10 +0000
http://bitbucket.org/pypy/pypy/changeset/62c039ea5e31/
Log: The split of the __del__ in a subclass of GeneratorIterator triggers
an unidentified JIT bug. Disable it for now. Investigating...
diff --git a/pypy/interpreter/pyframe.py b/pypy/interpreter/pyframe.py
--- a/pypy/interpreter/pyframe.py
+++ b/pypy/interpreter/pyframe.py
@@ -167,7 +167,7 @@
def run(self):
"""Start this frame's execution."""
if self.getcode().co_flags & pycode.CO_GENERATOR:
- if self.getcode().co_flags & pycode.CO_YIELD_INSIDE_TRY:
+ if 1:# self.getcode().co_flags & pycode.CO_YIELD_INSIDE_TRY:
from pypy.interpreter.generator import GeneratorIteratorWithDel
return self.space.wrap(GeneratorIteratorWithDel(self))
else:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit