]> granicus.if.org Git - python/commit
Fixes issue #17488: Change the subprocess.Popen bufsize parameter default value
authorGregory P. Smith <greg@krypto.org>
Sat, 23 Mar 2013 19:00:00 +0000 (12:00 -0700)
committerGregory P. Smith <greg@krypto.org>
Sat, 23 Mar 2013 19:00:00 +0000 (12:00 -0700)
commit4a8ea9e2a6d07bb069419274fb4dd75cfb6e3e55
tree06933b884687386da1ff38e1de6468e87e86d73e
parent59addb7dec1bfa4b9fd4d5500332b61374072d55
parenta1b9ed32ee69c9204959d5db2475001d199b3e50
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.
Doc/library/subprocess.rst
Lib/subprocess.py
Lib/test/test_subprocess.py
Misc/NEWS