changeset: 89155:73793590d97b user: Gregory P. Smith date: Tue Feb 11 09:21:03 2014 -0800 files: Doc/library/subprocess.rst description: Deprecate Popen.wait()'s undocumented endtime parameter. issue20572. diff -r 360976a6d8b9 -r 73793590d97b Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst Tue Feb 11 17:53:47 2014 +0100 +++ b/Doc/library/subprocess.rst Tue Feb 11 09:21:03 2014 -0800 @@ -639,6 +639,11 @@ .. 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)