]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#15788: fix broken links in subprocess doc. Patch by Chris Rebert.
authorEzio Melotti <ezio.melotti@gmail.com>
Mon, 27 Aug 2012 07:00:05 +0000 (10:00 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Mon, 27 Aug 2012 07:00:05 +0000 (10:00 +0300)
Doc/library/subprocess.rst

index 348c505011f4dde3d1ef128dabc7c30407b27bad..6cfc885a97dd963450aaff4428241d1512a989d3 100644 (file)
@@ -513,8 +513,8 @@ The following attributes are also available:
 
 .. warning::
 
-   Use :meth:`communicate` rather than :attr:`.stdin.write <stdin>`,
-   :attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid
+   Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
+   :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
    deadlocks due to any of the other OS pipe buffers filling up and blocking the
    child process.