STINNER Victor <[email protected]> added the comment: > Should it seg fault or just throw an exception?
Python cannot do anything useful on such fatal error. In Python 3.3, there is a faulthandler module which can help to debug: it dumps the traceback of all threads on such fatal error. It is also available as a third party module on PyPI: http://pypi.python.org/pypi/faulthandler ---------- nosy: +haypo _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue13951> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
