summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-10-29 04:06:48 (GMT)
committerGitHub <noreply@github.com>2017-10-29 04:06:48 (GMT)
commit0f1973d06e2116deafb19bbb9443b138187803c7 (patch)
tree03d80e8d7a1e1ba754120a5001bc76bde03f3994 /Doc/library
parent8ed5644f78e57cd59813097b35906ad6f1775f95 (diff)
downloadcpython-0f1973d06e2116deafb19bbb9443b138187803c7.zip
cpython-0f1973d06e2116deafb19bbb9443b138187803c7.tar.gz
cpython-0f1973d06e2116deafb19bbb9443b138187803c7.tar.bz2
bpo-31065: Add doc about Popen.poll returning None. (GH-3169)
(cherry picked from commit 006617ff7d6df3fdedcfe53e94ee2c52cc796437)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/subprocess.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index 27f3e82..ea7e664 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -584,7 +584,7 @@ Instances of the :class:`Popen` class have the following methods:
.. method:: Popen.poll()
Check if child process has terminated. Set and return
- :attr:`~Popen.returncode` attribute.
+ :attr:`~Popen.returncode` attribute. Otherwise, returns ``None``.
.. method:: Popen.wait(timeout=None)