summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-21 17:02:14 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-07-21 17:02:14 (GMT)
commit17438dc26cb4776ce6aecd4eccf83376f4a5f56c (patch)
tree281fff473e1b5b23afe2bbee6f9cd3f87316f6dc /Misc
parentf37b563c72d53da8e9137f0c6846da2e3f700030 (diff)
downloadcpython-17438dc26cb4776ce6aecd4eccf83376f4a5f56c.zip
cpython-17438dc26cb4776ce6aecd4eccf83376f4a5f56c.tar.gz
cpython-17438dc26cb4776ce6aecd4eccf83376f4a5f56c.tar.bz2
Merged revisions 73708,73738 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73708 | jesse.noller | 2009-06-30 13:11:52 -0400 (Tue, 30 Jun 2009) | 1 line Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes ........ r73738 | r.david.murray | 2009-06-30 22:49:10 -0400 (Tue, 30 Jun 2009) | 2 lines Make punctuation prettier and break up run-on sentence. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS3
-rw-r--r--Misc/NEWS4
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b35cc47..b4b07cf 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -45,6 +45,7 @@ Des Barry
Ulf Bartelt
Nick Bastin
Jeff Bauer
+Mike Bayer
Michael R Bax
Anthony Baxter
Samuel L. Bayer
@@ -178,6 +179,7 @@ Cesar Douady
Dean Draayer
John DuBois
Paul Dubois
+Graham Dumpleton
Quinn Dunkan
Robin Dunn
Luke Dunstan
@@ -536,6 +538,7 @@ Steven Pemberton
Santiago Peresón
Mark Perrego
Trevor Perrin
+Gabriel de Perthuis
Tim Peters
Benjamin Peterson
Chris Petrilli
diff --git a/Misc/NEWS b/Misc/NEWS
index 078c30d..e0cb38d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -65,6 +65,10 @@ Core and Builtins
Library
-------
+- Issues #5155, 5313, 5331: multiprocessing.Process._bootstrap was
+ unconditionally calling "os.close(sys.stdin.fileno())" resulting in file
+ descriptor errors
+
- Issue #6415: Fixed warnings.warn sagfault on bad formatted string.
- Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.