From aa935dfe9cb8db13e15c1768dc343e7ee6409dd9 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Mon, 27 Aug 2012 10:00:05 +0300 Subject: [PATCH] #15788: fix broken links in subprocess doc. Patch by Chris Rebert. --- Doc/library/subprocess.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 899bd7c26bc..00b72fb6e75 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.