Author: Mark Young <marky1...@gmail.com>
Branch: py3k
Changeset: r84173:f8ec043ed111
Date: 2016-05-03 10:48 -0400
http://bitbucket.org/pypy/pypy/changeset/f8ec043ed111/

Log:    Didn't quite merge properly.

diff --git a/pypy/module/itertools/interp_itertools.py 
b/pypy/module/itertools/interp_itertools.py
--- a/pypy/module/itertools/interp_itertools.py
+++ b/pypy/module/itertools/interp_itertools.py
@@ -581,7 +581,7 @@
             space = self.space
             try:
                 return space.next(w_iter)
-            except OperationError, e:
+            except OperationError as e:
                 if not e.match(space, space.w_StopIteration):
                     raise
                 self.active -= 1
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to