From: Ezio Melotti Date: Mon, 27 Aug 2012 07:00:05 +0000 (+0300) Subject: #15788: fix broken links in subprocess doc. Patch by Chris Rebert. X-Git-Tag: v3.2.4rc1~588 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa935dfe9cb8db13e15c1768dc343e7ee6409dd9;p=thirdparty%2FPython%2Fcpython.git #15788: fix broken links in subprocess doc. Patch by Chris Rebert. --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 899bd7c26bc0..00b72fb6e75c 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 `, - :attr:`.stdout.read ` or :attr:`.stderr.read ` to avoid + Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write `, + :attr:`.stdout.read ` or :attr:`.stderr.read ` to avoid deadlocks due to any of the other OS pipe buffers filling up and blocking the child process.