summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-12-19 03:19:47 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-12-19 03:19:47 (GMT)
commitb3468f79efa45c8adaf86c0b9b797b9b3d4c12a2 (patch)
tree14e9ae4dcb071ee7bf154026ecac93c3ea352c7a /Misc/NEWS
parentaddc6f5a21d5d04c5bf895e8ea46f67de129d75c (diff)
downloadcpython-b3468f79efa45c8adaf86c0b9b797b9b3d4c12a2.zip
cpython-b3468f79efa45c8adaf86c0b9b797b9b3d4c12a2.tar.gz
cpython-b3468f79efa45c8adaf86c0b9b797b9b3d4c12a2.tar.bz2
Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f4741fb..2e321c4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,11 @@ Core and Builtins
Library
-------
+- Issue #10611: SystemExit exception will no longer kill a unittest run.
+
+- Issue #9857: It is now possible to skip a test in a setUp, tearDown or clean
+ up function.
+
- Issue #10573: use actual/expected consistently in unittest methods.
The order of the args of assertCountEqual is also changed.
@@ -322,7 +327,7 @@ Library
- configparser: the SafeConfigParser class has been renamed to ConfigParser.
The legacy ConfigParser class has been removed but its interpolation mechanism
is still available as LegacyInterpolation.
-
+
- configparser: Usage of RawConfigParser is now discouraged for new projects
in favor of ConfigParser(interpolation=None).