diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-17 23:01:11 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-08-17 23:01:11 (GMT) |
commit | 5e8dc97a098766a566b07df241c524fbd56d34ac (patch) | |
tree | 2d9d31372c73d994c7cc2938177b70a272cf8580 /Misc | |
parent | 1d63a45d0d25acec0174bb291e6cd4c7c0d7c00d (diff) | |
download | cpython-5e8dc97a098766a566b07df241c524fbd56d34ac.zip cpython-5e8dc97a098766a566b07df241c524fbd56d34ac.tar.gz cpython-5e8dc97a098766a566b07df241c524fbd56d34ac.tar.bz2 |
Backport of r65032 from trunk
Fixes Issue #874900: after an os.fork() call the threading module state is cleaned
up in the child process to prevent deadlock and report proper thread counts
if the new process uses the threading module.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -144,6 +144,10 @@ Library - Issue #2113: Fix error in subprocess.Popen if the select system call is interrupted by a signal. +- Issue #874900: after an os.fork() call the threading module state is cleaned + up in the child process to prevent deadlock and report proper thread counts + if the new process uses the threading module. + Extension Modules ----------------- |