summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2015-11-16 05:15:26 (GMT)
committerGregory P. Smith <greg@krypto.org>2015-11-16 05:15:26 (GMT)
commitd0a5b1c3432574c248dfd86e583b5cd09503a374 (patch)
treec48f6cc1e71665862045e08a5e61830426ff44d6 /Misc
parent2cd1b3b08912133ff3d33755a9949c2aa0155b95 (diff)
downloadcpython-d0a5b1c3432574c248dfd86e583b5cd09503a374.zip
cpython-d0a5b1c3432574c248dfd86e583b5cd09503a374.tar.gz
cpython-d0a5b1c3432574c248dfd86e583b5cd09503a374.tar.bz2
Fixes #23564: Fix a partially broken sanity check in the _posixsubprocess
internals regarding how fds_to_pass were passed to the child. The bug had no actual impact as subprocess.py already avoided it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 41ed262..f72f8ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,10 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #23564: Fixed a partially broken sanity check in the _posixsubprocess
+ internals regarding how fds_to_pass were passed to the child. The bug had
+ no actual impact as subprocess.py already avoided it.
+
- Issue #25388: Fixed tokenizer crash when processing undecodable source code
with a null byte.