[pypy-commit] pypy kill-geninterp: Remove this temporary sanity-check now that it passes.
arigo
noreply at buildbot.pypy.org
Wed Mar 14 20:00:17 CET 2012
Author: Armin Rigo <arigo at tunes.org>
Branch: kill-geninterp
Changeset: r53591:e1dd26dab59b
Date: 2012-03-14 11:59 -0700
http://bitbucket.org/pypy/pypy/changeset/e1dd26dab59b/
Log: Remove this temporary sanity-check now that it passes.
diff --git a/pypy/objspace/flow/objspace.py b/pypy/objspace/flow/objspace.py
--- a/pypy/objspace/flow/objspace.py
+++ b/pypy/objspace/flow/objspace.py
@@ -449,9 +449,6 @@
def handle_implicit_exceptions(self, exceptions):
if not exceptions:
return
- for exc in exceptions: # just for sanity-checking
- assert exc is not TypeError
- assert exc is not AttributeError
# catch possible exceptions implicitly. If the OperationError
# below is not caught in the same function, it will produce an
# exception-raising return block in the flow graph. Note that
More information about the pypy-commit
mailing list