diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-21 19:15:42 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-21 19:15:42 (GMT) |
commit | 6e311aa748b123b1f1333c2c86b5904b57168276 (patch) | |
tree | 0577b6fab7a1380f5e552ba846d0fb108b5e57e2 /Doc/library/subprocess.rst | |
parent | 9e7fbde67f55e8e5c21bc41568c7fe13e72b44bc (diff) | |
parent | afe8d0646c9347960e99f5373d6cbd712b5376bb (diff) | |
download | cpython-6e311aa748b123b1f1333c2c86b5904b57168276.zip cpython-6e311aa748b123b1f1333c2c86b5904b57168276.tar.gz cpython-6e311aa748b123b1f1333c2c86b5904b57168276.tar.bz2 |
Issue #21332: Ensure that ``bufsize=1`` in subprocess.Popen() selects line buffering, rather than block buffering.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index d76e29f..6e495b3 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -406,12 +406,18 @@ functions. Read the `Security Considerations`_ section before using ``shell=True``. - *bufsize* will be supplied as the corresponding argument to the :func:`open` - function when creating the stdin/stdout/stderr pipe file objects: :const:`0` - means unbuffered (read and write are one system call and can return short), - :const:`1` means line buffered, any other positive value means use a buffer - of approximately that size. A negative bufsize (the default) means the - system default of io.DEFAULT_BUFFER_SIZE will be used. + *bufsize* will be supplied as the corresponding argument to the + :func:`open` function when creating the stdin/stdout/stderr pipe + file objects: + + - :const:`0` means unbuffered (read and write are one + system call and can return short) + - :const:`1` means line buffered + (only usable if ``universal_newlines=True`` i.e., in a text mode) + - any other positive value means use a buffer of approximately that + size + - negative bufsize (the default) means the system default of + io.DEFAULT_BUFFER_SIZE will be used. .. versionchanged:: 3.3.1 *bufsize* now defaults to -1 to enable buffering by default to match the |