[pypy-commit] pypy py3k: this syntax is no longer valid, kill the test

antocuni noreply at buildbot.pypy.org
Tue Feb 28 23:43:45 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53002:28efb1ee061c
Date: 2012-02-28 23:06 +0100
http://bitbucket.org/pypy/pypy/changeset/28efb1ee061c/

Log:	this syntax is no longer valid, kill the test

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
@@ -43,15 +43,6 @@
         x = X(x=8)
         assert x.x == 8
 
-    def test_catch_with_unpack(self):
-        from exceptions import LookupError
-
-        try:
-            raise LookupError(1, 2)
-        except LookupError, (one, two):
-            assert one == 1
-            assert two == 2
-
     def test_exc(self):
         from exceptions import Exception, BaseException
 


More information about the pypy-commit mailing list