Author: Ronan Lamy <[email protected]>
Branch: 
Changeset: r84163:a3b6760236fc
Date: 2016-05-03 03:09 +0100
http://bitbucket.org/pypy/pypy/changeset/a3b6760236fc/

Log:    revert wrong change in d1f09c46b8e7

diff --git a/pypy/module/exceptions/test/test_exc.py 
b/pypy/module/exceptions/test/test_exc.py
--- a/pypy/module/exceptions/test/test_exc.py
+++ b/pypy/module/exceptions/test/test_exc.py
@@ -55,8 +55,7 @@
 
         try:
             raise LookupError(1, 2)
-        except LookupError as xxx_todo_changeme:
-            (one, two) = xxx_todo_changeme.args
+        except LookupError, (one, two):
             assert one == 1
             assert two == 2
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to