summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-03-18 22:56:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-03-18 22:56:46 (GMT)
commitd833779ceaebeb29352488ffddabf5fc2f070364 (patch)
tree83ff79a3d53920897701d6180472e40ec4e72e93 /Misc
parentc4c19b39381460a2353c2789f13fa2bb1ab565c1 (diff)
downloadcpython-d833779ceaebeb29352488ffddabf5fc2f070364.zip
cpython-d833779ceaebeb29352488ffddabf5fc2f070364.tar.gz
cpython-d833779ceaebeb29352488ffddabf5fc2f070364.tar.bz2
Issue #22903: The fake test case created by unittest.loader when it fails importing a test module is now picklable.
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 90edc96..2ec41cd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #22903: The fake test case created by unittest.loader when it fails
+ importing a test module is now picklable.
+
- Issue #23568: Add rdivmod support to MagicMock() objects.
Patch by Håkan Lövdahl.