]> granicus.if.org Git - python/commitdiff
link to builtin open not io.open
authorBenjamin Peterson <benjamin@python.org>
Sat, 18 Jan 2014 05:47:00 +0000 (00:47 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 18 Jan 2014 05:47:00 +0000 (00:47 -0500)
Doc/library/subprocess.rst

index 4acbaa7aac1f42b638ee8e30e2d30f59e6984d49..5d04ef008629ef7429dec2eac60083d0b72d4760 100644 (file)
@@ -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