From: Benjamin Peterson Date: Sat, 18 Jan 2014 05:47:00 +0000 (-0500) Subject: link to builtin open not io.open X-Git-Tag: v3.3.4rc1~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eacec1ccffb78292320fbf81c0ad936d63192ee1;p=python link to builtin open not io.open --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 4acbaa7aac..5d04ef0086 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