summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-08-03 12:56:30 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-08-03 12:56:30 (GMT)
commit60b3ac7482aa7ca4e6f0f66792160d38b48d1914 (patch)
tree6aa391af41470e295c41f9fd224e5661b2fd3c68 /Misc
parente92dfbfec8db930c5960492c3d9470f3415e27a3 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 98357a4..bd85696 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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