summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-20 19:31:50 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-20 19:31:50 (GMT)
commit2a95219bc42ff23724d3230f3bcdb2584cd07914 (patch)
tree075bca187f96831e77ebae65720eaaa35e682532 /Misc
parentda23056a3ed33d2ae69752f7d113059333176297 (diff)
parent13e602ea0f08e8c04d635356375d1d2ab5a9b964 (diff)
downloadcpython-2a95219bc42ff23724d3230f3bcdb2584cd07914.zip
cpython-2a95219bc42ff23724d3230f3bcdb2584cd07914.tar.gz
cpython-2a95219bc42ff23724d3230f3bcdb2584cd07914.tar.bz2
Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"
format unit.
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 628426b..86b65ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Release date: 2016-05-16
Core and Builtins
-----------------
+- Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N"
+ format unit.
+
- Issue #26991: Fix possible refleak when creating a function with annotations.
- Issue #27039: Fixed bytearray.remove() for values greater than 127. Based on