From: Victor Stinner Date: Wed, 4 May 2011 09:02:12 +0000 (+0200) Subject: regrtest: dump all threads on a crash, not only the current thread X-Git-Tag: v3.3.0a1~2413 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55b5fa76a73c6c1cddec649846faf6bad0f2cfd6;p=python regrtest: dump all threads on a crash, not only the current thread --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 0b7e3d2521..120bd6089e 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1589,7 +1589,7 @@ def _make_temp_dir_for_build(TEMPDIR): if __name__ == '__main__': # Display the Python traceback on segfault and division by zero - faulthandler.enable() + faulthandler.enable(all_threads=True) # Remove regrtest.py's own directory from the module search path. Despite # the elimination of implicit relative imports, this is still needed to