Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix --catch-exceptions causing a segfault in Python 3.5.
This bug arose due to the fact that the traceback module was overhauled in python 3.5: https://hg.python.org/cpython/rev/73afda5a4e4c The crash was due to PyTuple_GetItem returning NULL as a traceback is no longer a list of tuples but rather a list of objects (which support indexing).
- Loading branch information