diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-11-23 14:55:11 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-11-23 14:55:11 (GMT) |
commit | 18f22989dd73c7b9c09a746e89cb9d7ce7243d1d (patch) | |
tree | 88e0aaf2130047e6e6f85f823bf313a4b4fa1a8e /Misc | |
parent | a21de3d45ec2aebf899712cbd0e44eba9611d2af (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |