summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-11-23 15:55:11 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2014-11-23 15:55:11 +0100
commit45d2905e417a1edcec07d77bb7a2b5e16a6d7a85 (patch)
treead2722572cd651c81b8f7703bc2fecbcd30e27d0 /Misc
parent07dc93c935aba09f828213684d75f56079c75d31 (diff)
downloadcpython-45d2905e417a1edcec07d77bb7a2b5e16a6d7a85.tar.gz
Issue #22894: TestCase.subTest() would cause the test suite to be stopped when in failfast mode, even in the absence of failures.
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 2d131bd9cc..1fedf61157 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #22894: TestCase.subTest() would cause the test suite to be stopped
+ when in failfast mode, even in the absence of failures.
+
- Issue #22638: SSLv3 is now disabled throughout the standard library.
It can still be enabled by instantiating a SSLContext manually.