summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-08-23 17:46:22 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-08-23 17:46:22 (GMT)
commitbcb39d484628f55ffc3205e9ddd0166093695e50 (patch)
treed9ed8b2ced3146e0145415e1e9c13b505cbc752e /Misc
parent5bd8b8d80fd0e038be43beb95ba29cd2bd93e965 (diff)
downloadcpython-bcb39d484628f55ffc3205e9ddd0166093695e50.zip
cpython-bcb39d484628f55ffc3205e9ddd0166093695e50.tar.gz
cpython-bcb39d484628f55ffc3205e9ddd0166093695e50.tar.bz2
Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.
Also added some tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6673d20..fca436c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #11657: Fix sending file descriptors over 255 over a multiprocessing
+ Pipe.
+
- Issue #12213: Fix a buffering bug with interleaved reads and writes that
could appear on BufferedRandom streams.