summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-19 06:04:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-19 06:04:15 (GMT)
commitb94eef2ae3737b1f03452a30d5c96640c838dc46 (patch)
tree7fe16b237f4138c70d900384e52f69e72b89b144 /Misc/NEWS
parent4ec1590fbf584cbe328230c7b06c64db9b6e3842 (diff)
downloadcpython-b94eef2ae3737b1f03452a30d5c96640c838dc46.zip
cpython-b94eef2ae3737b1f03452a30d5c96640c838dc46.tar.gz
cpython-b94eef2ae3737b1f03452a30d5c96640c838dc46.tar.bz2
Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that
doesn't own its elements as limits.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a29ec8..13e9e6d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -130,6 +130,9 @@ Core and Builtins
Library
-------
+- Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that
+ doesn't own its elements as limits.
+
- Issue #28779: multiprocessing.set_forkserver_preload() would crash the
forkserver process if a preloaded module instantiated some
multiprocessing objects such as locks.