diff options
| author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-04 09:02:12 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-05-04 09:02:12 (GMT) |
| commit | 55b5fa76a73c6c1cddec649846faf6bad0f2cfd6 (patch) | |
| tree | 07527f576a883186a6077f2ee4dd1deec8c1f661 /Lib/test/regrtest.py | |
| parent | afd01172f98c2c6f9aeb3a02d885ba6ec8f0540c (diff) | |
| download | cpython-55b5fa76a73c6c1cddec649846faf6bad0f2cfd6.zip cpython-55b5fa76a73c6c1cddec649846faf6bad0f2cfd6.tar.gz cpython-55b5fa76a73c6c1cddec649846faf6bad0f2cfd6.tar.bz2 | |
regrtest: dump all threads on a crash, not only the current thread
Diffstat (limited to 'Lib/test/regrtest.py')
| -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 0b7e3d2..120bd60 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 |
