diff options
author | Gregory P. Smith <greg@krypto.org> | 2015-11-16 05:15:26 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2015-11-16 05:15:26 (GMT) |
commit | d0a5b1c3432574c248dfd86e583b5cd09503a374 (patch) | |
tree | c48f6cc1e71665862045e08a5e61830426ff44d6 /Misc | |
parent | 2cd1b3b08912133ff3d33755a9949c2aa0155b95 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |