summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-10 20:49:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-10 20:49:30 (GMT)
commit0734c632d583578a52e83cd88063a95455436b83 (patch)
tree045e042e985707c676609e019c3ee2359e6c5d8c /Misc
parent610326d48ac112524ede8182f695fdf8115a0c92 (diff)
downloadcpython-0734c632d583578a52e83cd88063a95455436b83.zip
cpython-0734c632d583578a52e83cd88063a95455436b83.tar.gz
cpython-0734c632d583578a52e83cd88063a95455436b83.tar.bz2
Issue #7197: Allow unittest.TextTestRunner objects to be pickled and
unpickled. This fixes crashes under Windows when trying to run test_multiprocessing in verbose mode. Additionally, Test_TextTestRunner hadn't been enabled in test_unittest.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 57183e1..e3638aa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -426,6 +426,10 @@ Core and Builtins
Library
-------
+- Issue #7197: Allow unittest.TextTestRunner objects to be pickled and
+ unpickled. This fixes crashes under Windows when trying to run
+ test_multiprocessing in verbose mode.
+
- Issue #7282: Fix a memory leak when an RLock was used in a thread other
than those started through `threading.Thread` (for example, using
`thread.start_new_thread()`.