diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-18 05:47:06 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-18 05:47:06 (GMT) |
commit | 9308c420d3a801e0f3605605cf30be8c383d9d67 (patch) | |
tree | 8e3905afd7e68040bcef92dd101847fa20f052db /Doc/library/subprocess.rst | |
parent | d8af6700b92d922dd115647fd5c8022a730848d3 (diff) | |
parent | eacec1ccffb78292320fbf81c0ad936d63192ee1 (diff) | |
download | cpython-9308c420d3a801e0f3605605cf30be8c383d9d67.zip cpython-9308c420d3a801e0f3605605cf30be8c383d9d67.tar.gz cpython-9308c420d3a801e0f3605605cf30be8c383d9d67.tar.bz2 |
merge 3.3
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 6e696d9..9f15753 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -444,12 +444,12 @@ functions. untrusted input. See the warning under :ref:`frequently-used-arguments` for details. - *bufsize* will be supplied as the corresponding argument to the :meth:`io.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, 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. .. versionchanged:: 3.3.1 *bufsize* now defaults to -1 to enable buffering by default to match the |