summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-06-30 17:11:52 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-06-30 17:11:52 (GMT)
commit1b90efbdc5bb204fe50aea87374603dcba309227 (patch)
tree42a36dca54321c6caf5e9ca488bdc1be1988b9d2 /Misc
parent0c9eb431491387fc68940e2b24dc873f3147e0c8 (diff)
downloadcpython-1b90efbdc5bb204fe50aea87374603dcba309227.zip
cpython-1b90efbdc5bb204fe50aea87374603dcba309227.tar.gz
cpython-1b90efbdc5bb204fe50aea87374603dcba309227.tar.bz2
Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes
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 5cc07e5..9159b6f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -46,6 +46,7 @@ Des Barry
Ulf Bartelt
Nick Bastin
Jeff Bauer
+Mike Bayer
Michael R Bax
Anthony Baxter
Samuel L. Bayer
@@ -183,6 +184,7 @@ Cesar Douady
Dean Draayer
John DuBois
Paul Dubois
+Graham Dumpleton
Quinn Dunkan
Robin Dunn
Luke Dunstan
@@ -553,6 +555,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 1e244c9..03cf45c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -341,6 +341,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 #6365: Distutils build_ext inplace mode was copying the compiled
extension in a subdirectory if the extension name had dots.