Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit eacec1c

Browse files
committed
link to builtin open not io.open
1 parent 3d8814e commit eacec1c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/library/subprocess.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -434,12 +434,12 @@ functions.
434434
untrusted input. See the warning under :ref:`frequently-used-arguments`
435435
for details.
436436

437-
*bufsize* will be supplied as the corresponding argument to the :meth:`io.open`
438-
function when creating the stdin/stdout/stderr pipe file objects:
439-
:const:`0` means unbuffered (read and write are one system call and can return short),
440-
:const:`1` means line buffered, any other positive value means use a buffer of
441-
approximately that size. A negative bufsize (the default) means
442-
the system default of io.DEFAULT_BUFFER_SIZE will be used.
437+
*bufsize* will be supplied as the corresponding argument to the :func:`open`
438+
function when creating the stdin/stdout/stderr pipe file objects: :const:`0`
439+
means unbuffered (read and write are one system call and can return short),
440+
:const:`1` means line buffered, any other positive value means use a buffer
441+
of approximately that size. A negative bufsize (the default) means the
442+
system default of io.DEFAULT_BUFFER_SIZE will be used.
443443

444444
.. versionchanged:: 3.3.1
445445
*bufsize* now defaults to -1 to enable buffering by default to match the

0 commit comments

Comments
 (0)