Author: Ronan Lamy <[email protected]>
Branch: testing-cleanup
Changeset: r84987:0b983b71075f
Date: 2016-06-07 00:55 +0100
http://bitbucket.org/pypy/pypy/changeset/0b983b71075f/
Log: Remove obsolete check
diff --git a/pypy/tool/pytest/inttest.py b/pypy/tool/pytest/inttest.py
--- a/pypy/tool/pytest/inttest.py
+++ b/pypy/tool/pytest/inttest.py
@@ -33,15 +33,6 @@
except OperationError as e:
check_keyboard_interrupt(e)
raise
- except Exception as e:
- cls = e.__class__
- while cls is not Exception:
- if cls.__name__ == 'DistutilsPlatformError':
- from distutils.errors import DistutilsPlatformError
- if isinstance(e, DistutilsPlatformError):
- py.test.skip('%s: %s' % (e.__class__.__name__, e))
- cls = cls.__bases__[0]
- raise
class IntInstanceCollector(py.test.collect.Instance):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit