summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-10 21:34:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-10 21:34:48 (GMT)
commitc63ecee6c33156cbae1f985d49f6aa995af04f21 (patch)
treea4d2c7b066ec4ce2bba6d789383f584c7905b9ed /Misc/NEWS
parentadf6a6c8421b12ef84b25b1b7628226912051cc2 (diff)
downloadcpython-c63ecee6c33156cbae1f985d49f6aa995af04f21.zip
cpython-c63ecee6c33156cbae1f985d49f6aa995af04f21.tar.gz
cpython-c63ecee6c33156cbae1f985d49f6aa995af04f21.tar.bz2
Merged revisions 76196 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76196 | antoine.pitrou | 2009-11-10 21:49:30 +0100 (mar., 10 nov. 2009) | 8 lines 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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 978565a..cf62a99 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,10 @@ C-API
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 #3001: Add a C implementation of recursive locks which is used by
default when instantiating a `threading.RLock` object. This makes
recursive locks as fast as regular non-recursive locks (previously,