diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-08-03 12:56:30 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-08-03 12:56:30 (GMT) |
commit | 60b3ac7482aa7ca4e6f0f66792160d38b48d1914 (patch) | |
tree | 6aa391af41470e295c41f9fd224e5661b2fd3c68 /Misc | |
parent | e92dfbfec8db930c5960492c3d9470f3415e27a3 (diff) | |
download | cpython-60b3ac7482aa7ca4e6f0f66792160d38b48d1914.zip cpython-60b3ac7482aa7ca4e6f0f66792160d38b48d1914.tar.gz cpython-60b3ac7482aa7ca4e6f0f66792160d38b48d1914.tar.bz2 |
Close #18396: fix spurious test_signal failure on Windows
signal.getsignal returns None for some signals if faulthandler
is enabled (Patch by Jeremy Kloth)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -230,6 +230,9 @@ IDLE Tests ----- +- Issue #18396: Fix spurious test failure in test_signal on Windows when + faulthandler is enabled (Patch by Jeremy Kloth) + - Issue #17046: Fix broken test_executable_without_cwd in test_subprocess. - Issue #15415: Add new temp_dir() and change_cwd() context managers to |