summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-09-26 07:52:57 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-09-26 07:52:57 (GMT)
commitd2a4073db2e267d8c23c094386aaedbbdaf1bf81 (patch)
tree46d790e4d9a0b7377309bbe2a6861cb6b8f58606 /Misc
parent8bfacc798559bb99bc9e13060b9ff23234760c1f (diff)
downloadcpython-d2a4073db2e267d8c23c094386aaedbbdaf1bf81.zip
cpython-d2a4073db2e267d8c23c094386aaedbbdaf1bf81.tar.gz
cpython-d2a4073db2e267d8c23c094386aaedbbdaf1bf81.tar.bz2
Issue #25135: Avoid possible reentrancy issues in deque_clear.
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 32367b4..83c50e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Library
- Issue #19143: platform module now reads Windows version from kernel32.dll to
avoid compatibility shims.
+- Issue #25135: Make deque_clear() safer by emptying the deque before clearing.
+ This helps avoid possible reentrancy issues.
+
- Issue #24684: socket.socket.getaddrinfo() now calls
PyUnicode_AsEncodedString() instead of calling the encode() method of the
host, to handle correctly custom unicode string with an encode() method