bpo-31065: Add doc about Popen.poll returning None. (#3169)

This commit is contained in:
Ivan Chernoff 2017-08-29 17:46:24 +03:00 committed by Gregory P. Smith
parent 265fcc5fc2
commit 006617ff7d

View file

@ -584,7 +584,7 @@ Instances of the :class:`Popen` class have the following methods:
.. method:: Popen.poll() .. method:: Popen.poll()
Check if child process has terminated. Set and return 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) .. method:: Popen.wait(timeout=None)