diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-18 05:47:00 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-18 05:47:00 (GMT) |
commit | eacec1ccffb78292320fbf81c0ad936d63192ee1 (patch) | |
tree | bb9450982f0e4a27a097976d4167cd36f05bb263 /Doc | |
parent | 3d8814e1d30e174ddcb3591a1ff35206e962b064 (diff) | |
download | cpython-eacec1ccffb78292320fbf81c0ad936d63192ee1.zip cpython-eacec1ccffb78292320fbf81c0ad936d63192ee1.tar.gz cpython-eacec1ccffb78292320fbf81c0ad936d63192ee1.tar.bz2 |
link to builtin open not io.open
Diffstat (limited to 'Doc')
-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 4acbaa7..5d04ef0 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -434,12 +434,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 |