Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r65483:e9608727658c
Date: 2013-07-19 20:33 +0200
http://bitbucket.org/pypy/pypy/changeset/e9608727658c/

Log:    Fix the first of the two tests

diff --git a/lib_pypy/greenlet.py b/lib_pypy/greenlet.py
--- a/lib_pypy/greenlet.py
+++ b/lib_pypy/greenlet.py
@@ -147,5 +147,8 @@
     _tls.current = greenlet
     try:
         raise exc, value, tb
+    except GreenletExit, e:
+        res = e
     finally:
         _continuation.permute(greenlet, greenlet.parent)
+    return ((res,), None)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to