diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-08-27 07:03:23 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-08-27 07:03:23 (GMT) |
commit | 7f79f7cf2355a3c54b0cc33e69dc17ff4ca3bd0f (patch) | |
tree | d1e8415fa52c9eed87bee1f5579e418f521cb0d8 /Doc/library/subprocess.rst | |
parent | d26c306bf18810c4e8b8dbc53c58af4b014eab06 (diff) | |
parent | aa935dfe9cb8db13e15c1768dc343e7ee6409dd9 (diff) | |
download | cpython-7f79f7cf2355a3c54b0cc33e69dc17ff4ca3bd0f.zip cpython-7f79f7cf2355a3c54b0cc33e69dc17ff4ca3bd0f.tar.gz cpython-7f79f7cf2355a3c54b0cc33e69dc17ff4ca3bd0f.tar.bz2 |
#15788: merge with 3.2.
Diffstat (limited to 'Doc/library/subprocess.rst')
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index c0fc4d7..2d5f761 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -669,8 +669,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. |