#15788: fix broken links in subprocess doc. Patch by Chris Rebert.

This commit is contained in:
Ezio Melotti 2012-08-27 10:00:05 +03:00
parent 25437565f9
commit aa935dfe9c
1 changed files with 2 additions and 2 deletions

View File

@ -565,8 +565,8 @@ The following attributes are also available:
.. warning:: .. warning::
Use :meth:`communicate` rather than :attr:`.stdin.write <stdin>`, Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
:attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid :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 deadlocks due to any of the other OS pipe buffers filling up and blocking the
child process. child process.