diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-03-23 18:54:22 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-03-23 18:54:22 (GMT) |
commit | a1b9ed32ee69c9204959d5db2475001d199b3e50 (patch) | |
tree | 9a0703b29c0cc374df6aea8666714f89dc3839ca /Misc | |
parent | 3ddba16aa6ebdbd3b811d8611a738aa18dfece42 (diff) | |
parent | a1ed539268e37b12a4a864738b4d1e12bdb92793 (diff) | |
download | cpython-a1b9ed32ee69c9204959d5db2475001d199b3e50.zip cpython-a1b9ed32ee69c9204959d5db2475001d199b3e50.tar.gz cpython-a1b9ed32ee69c9204959d5db2475001d199b3e50.tar.bz2 |
Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value
from unbuffered (0) to buffering (-1) to match the behavior existing code
expects and match the behavior of the subprocess module in Python 2 to avoid
introducing hard to track down bugs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -196,6 +196,11 @@ Core and Builtins Library ------- +- Issue #17488: Change the subprocess.Popen bufsize parameter default value + from unbuffered (0) to buffering (-1) to match the behavior existing code + expects and match the behavior of the subprocess module in Python 2 to avoid + introducing hard to track down bugs. + - Issue #17521: Corrected non-enabling of logger following two calls to fileConfig(). |