summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-11-23 14:55:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-11-23 14:55:11 (GMT)
commit18f22989dd73c7b9c09a746e89cb9d7ce7243d1d (patch)
tree88e0aaf2130047e6e6f85f823bf313a4b4fa1a8e /Misc
parenta21de3d45ec2aebf899712cbd0e44eba9611d2af (diff)
downloadcpython-18f22989dd73c7b9c09a746e89cb9d7ce7243d1d.zip
cpython-18f22989dd73c7b9c09a746e89cb9d7ce7243d1d.tar.gz
cpython-18f22989dd73c7b9c09a746e89cb9d7ce7243d1d.tar.bz2
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 2d131bd..1fedf61 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.