summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-03-14 07:13:25 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-03-14 07:13:25 (GMT)
commit580d60cef47124376cb1d287f830551a0fa10869 (patch)
treeb3f25bbe7b0041c17634c8b068032ff1f8c2e945 /Misc
parenta31f57cc9a6df320fa4427f6cd3bb8066be5f451 (diff)
downloadcpython-580d60cef47124376cb1d287f830551a0fa10869.zip
cpython-580d60cef47124376cb1d287f830551a0fa10869.tar.gz
cpython-580d60cef47124376cb1d287f830551a0fa10869.tar.bz2
More notes about r78946, this time describing the restore_signals behavior.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f937d55..8651d1f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -287,6 +287,11 @@ Library
by an extension module (_posixsubprocess) so that the fork()+exec() can be
done safely without the possibility of deadlock in multithreaded applications.
+- subprocess.Popen now has restore_signals and start_new_session features.
+ The default of restore_signals=True is a new behavior compared to earlier
+ Python versions. This means that signals such as SIGPIPE are not ignored
+ by default in subprocesses launched by Python (Issue #1652).
+
- Issue #6472: The xml.etree package is updated to ElementTree 1.3. The
cElementTree module is updated too.