Deprecate Popen.wait()'s undocumented endtime parameter. issue20572.

This commit is contained in:
Gregory P. Smith 2014-02-11 09:21:03 -08:00
parent 2371e25517
commit bbe3335f65
1 changed files with 5 additions and 0 deletions

View File

@ -639,6 +639,11 @@ Instances of the :class:`Popen` class have the following methods:
.. versionchanged:: 3.3
*timeout* was added.
.. deprecated:: 3.4
Do not use the undocumented *endtime* parameter. It is was
unintentionally exposed in 3.3 but was intended to be private
for internal use. Use *timeout* instead.
.. method:: Popen.communicate(input=None, timeout=None)