summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-20 08:33:06 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-20 08:33:06 +0200
commit660076761180bac82ff7467926a4b1d41a50945f (patch)
treef5a73a67c5b692da96079b1abb468305d2957b5e /Misc
parent6e5162bf16a9e877235792bb764c2c4db1efd4a3 (diff)
downloadcpython-660076761180bac82ff7467926a4b1d41a50945f.tar.gz
Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().
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 dfb42b681a..138539b418 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1?
Core and Builtins
-----------------
+- Issue #29327: Fixed a crash when pass the iterable keyword argument to
+ sorted().
+
- Issue #29034: Fix memory leak and use-after-free in os module (path_converter).
- Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.