summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-08-27 07:00:05 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-08-27 07:00:05 (GMT)
commitaa935dfe9cb8db13e15c1768dc343e7ee6409dd9 (patch)
treef7837496d8fa5cc5a0b77c2bb45f9b517fc4c853 /Doc/library
parent25437565f9f456a1e88f209706ced0353bbdeb14 (diff)
downloadcpython-aa935dfe9cb8db13e15c1768dc343e7ee6409dd9.zip
cpython-aa935dfe9cb8db13e15c1768dc343e7ee6409dd9.tar.gz
cpython-aa935dfe9cb8db13e15c1768dc343e7ee6409dd9.tar.bz2
#15788: fix broken links in subprocess doc. Patch by Chris Rebert.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/subprocess.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 899bd7c..00b72fb 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -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.