projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2543756
)
#15788: fix broken links in subprocess doc. Patch by Chris Rebert.
author
Ezio Melotti
<ezio.melotti@gmail.com>
Mon, 27 Aug 2012 07:00:05 +0000
(10:00 +0300)
committer
Ezio Melotti
<ezio.melotti@gmail.com>
Mon, 27 Aug 2012 07:00:05 +0000
(10:00 +0300)
Doc/library/subprocess.rst
patch
|
blob
|
history
diff --git
a/Doc/library/subprocess.rst
b/Doc/library/subprocess.rst
index 899bd7c26bc0328a7f6c3e9304469e4084e415af..00b72fb6e75c6bef8c5586c1978c58ed16aab6b3 100644
(file)
--- 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.