[Python-checkins] cpython: Deprecate Popen.wait()'s undocumented endtime parameter. issue20572.

gregory.p.smith python-checkins at python.org
Tue Feb 11 18:21:13 CET 2014


http://hg.python.org/cpython/rev/73793590d97b
changeset:   89155:73793590d97b
user:        Gregory P. Smith <greg at krypto.org>
date:        Tue Feb 11 09:21:03 2014 -0800
summary:
  Deprecate Popen.wait()'s undocumented endtime parameter. issue20572.

files:
  Doc/library/subprocess.rst |  5 +++++
  1 files changed, 5 insertions(+), 0 deletions(-)


diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -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)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list