diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 00:17:40 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-03-01 00:17:40 (GMT) |
commit | a59c59f9460ddc9c9a54965414c60be50ee5873b (patch) | |
tree | f006e014b6b553425962c0aa6f9c2b1e1736a3b9 /Misc | |
parent | 3fdd9648cb6974324ee31d81541b1dca5fb830d8 (diff) | |
download | cpython-a59c59f9460ddc9c9a54965414c60be50ee5873b.zip cpython-a59c59f9460ddc9c9a54965414c60be50ee5873b.tar.gz cpython-a59c59f9460ddc9c9a54965414c60be50ee5873b.tar.bz2 |
Merged revisions 78523 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78523 | gregory.p.smith | 2010-02-28 16:05:08 -0800 (Sun, 28 Feb 2010) | 3 lines
Issue #1068268: The subprocess module now handles EINTR in internal
os.waitpid and os.read system calls where appropriate.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -714,6 +714,9 @@ Library - Issue #7481: When a threading.Thread failed to start it would leave the instance stuck in initial state and present in threading.enumerate(). +- Issue #1068268: The subprocess module now handles EINTR in internal + os.waitpid and os.read system calls where appropriate. + Extension Modules ----------------- |