diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-04 11:02:12 +0200 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-04 11:02:12 +0200 |
| commit | 55b5fa76a73c6c1cddec649846faf6bad0f2cfd6 (patch) | |
| tree | 07527f576a883186a6077f2ee4dd1deec8c1f661 | |
| parent | afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c (diff) | |
| download | cpython-git-55b5fa76a73c6c1cddec649846faf6bad0f2cfd6.tar.gz | |
regrtest: dump all threads on a crash, not only the current thread
| -rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
