#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 899bd7c26bc0328a7f6c3e9304469e4084e415af..00b72fb6e75c6bef8c5586c1978c58ed16aab6b3 100644 (file)
@@ -565,8 +565,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.