Author: Mike Blume <[email protected]>
Branch: py3k
Changeset: r53328:be1a97cde868
Date: 2012-03-12 11:33 -0700
http://bitbucket.org/pypy/pypy/changeset/be1a97cde868/

Log:    3dded6e012c

diff --git a/pypy/module/_collections/test/test_defaultdict.py 
b/pypy/module/_collections/test/test_defaultdict.py
--- a/pypy/module/_collections/test/test_defaultdict.py
+++ b/pypy/module/_collections/test/test_defaultdict.py
@@ -23,7 +23,7 @@
             for key in ['foo', (1,)]:
                 try:
                     d1[key]
-                except KeyError, err:
+                except KeyError as err:
                     assert err.args[0] == key
                 else:
                     assert 0, "expected KeyError"
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to