summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2016-11-21 00:25:14 (GMT)
committerGregory P. Smith <greg@krypto.org>2016-11-21 00:25:14 (GMT)
commitf0e98c510dd9bbc77b2ae3ebc888e6fba1549c5d (patch)
tree9c95d599820021e3f191b3b93ddd0c951c51f7fb /Misc
parentcf014413159c1fa2e8b1c1201c07b648b8b0adf2 (diff)
downloadcpython-f0e98c510dd9bbc77b2ae3ebc888e6fba1549c5d.zip
cpython-f0e98c510dd9bbc77b2ae3ebc888e6fba1549c5d.tar.gz
cpython-f0e98c510dd9bbc77b2ae3ebc888e6fba1549c5d.tar.bz2
Issue #20572: The subprocess.Popen.wait method's undocumented endtime
parameter now raises a DeprecationWarning. It was deprecated in 3.4. It was never documented prior to that.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e9d2f7d..435fd0a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #20572: The subprocess.Popen.wait method's undocumented
+ endtime parameter now raises a DeprecationWarning.
+
- Issue #25659: In ctypes, prevent a crash calling the from_buffer() and
from_buffer_copy() methods on abstract classes like Array.