cpython (3.2): #15788: fix broken links in subprocess doc. Patch by Chris Rebert.
http://hg.python.org/cpython/rev/1676e423054a changeset: 78775:1676e423054a branch: 3.2 parent: 78765:a425f2697273 user: Ezio Melotti <ezio.melotti@gmail.com> date: Mon Aug 27 10:00:05 2012 +0300 summary: #15788: fix broken links in subprocess doc. Patch by Chris Rebert. files: Doc/library/subprocess.rst | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -565,8 +565,8 @@ .. 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. -- Repository URL: http://hg.python.org/cpython
participants (1)
-
ezio.melotti