diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-19 22:05:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-04-19 22:05:17 (GMT) |
commit | dd5aa36f179011f390a0cc6fb4ba7bba1764f1a9 (patch) | |
tree | 8eab78b2d8fe17426fe8bc2dca0b33628920a750 /Misc | |
parent | bf35c156b48bd09febeb74d0a5b218e959d4225b (diff) | |
parent | 8e6e0fdb7fee3796df8b578c1311b5e46005f2d9 (diff) | |
download | cpython-dd5aa36f179011f390a0cc6fb4ba7bba1764f1a9.zip cpython-dd5aa36f179011f390a0cc6fb4ba7bba1764f1a9.tar.gz cpython-dd5aa36f179011f390a0cc6fb4ba7bba1764f1a9.tar.bz2 |
Issue #14308: Fix an exception when a dummy thread is in the threading module's active list after a fork().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -55,6 +55,9 @@ Core and Builtins Library ------- +- Issue #14308: Fix an exception when a "dummy" thread is in the threading + module's active list after a fork(). + - Issue #11750: The Windows API functions scattered in the _subprocess and _multiprocessing.win32 modules now live in a single module "_winapi". Patch by sbt. |