[pypy-commit] pypy default: Removed redundant 'except' clause

kirbyfan64sos noreply at buildbot.pypy.org
Mon Apr 28 09:35:23 CEST 2014


Author: Ryan Gonzalez <rymg19 at gmail.com>
Branch: 
Changeset: r71035:f1b863443b2d
Date: 2014-04-27 23:16 +0000
http://bitbucket.org/pypy/pypy/changeset/f1b863443b2d/

Log:	Removed redundant 'except' clause

diff --git a/rpython/rlib/test/test_streamio.py b/rpython/rlib/test/test_streamio.py
--- a/rpython/rlib/test/test_streamio.py
+++ b/rpython/rlib/test/test_streamio.py
@@ -1117,8 +1117,6 @@
             x = fo('.test.file', 'r')
             assert x.read() == 'abc123456'
             x.close()
-        except:
-            raise
         finally:
             if os.path.exists('.test.file'):
                 os.remove('.test.file')


More information about the pypy-commit mailing list