diff options
author | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
commit | 16a57f6a343d7bacd85e79c3edb64cd832d8a9ac (patch) | |
tree | c277aed5347aa94a08a6b6742f31f56efbc56948 /Doc/library/subprocess.rst | |
parent | d91f8cf779d9ac4c34e3a47a5a6cfe698874c5dd (diff) | |
download | cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.zip cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.gz cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.bz2 |
Demote warnings to notices where appropriate, following the goal that as few "red box" warnings
should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 685e941..c95566b 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -301,10 +301,10 @@ The following attributes are also available: .. warning:: - Use :meth:`communicate` rather than :meth:`.stdin.write`, - :meth:`.stdout.read` or :meth:`.stderr.read` to avoid deadlocks due - to any of the other OS pipe buffers filling up and blocking the child - process. + Use :meth:`communicate` rather than :attr:`.stdin.write <stdin>`, + :attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid + deadlocks due to any of the other OS pipe buffers filling up and blocking the + child process. .. attribute:: Popen.stdin |