summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-20 06:33:06 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-20 06:33:06 (GMT)
commit398ef5c08feabfdbf7d0b1e10817139f0e98eefd (patch)
tree313bc8288fb071b96270f05ce96bf19cc13f1358 /Misc
parenta57a8a3e2d64dfff1bc843c8b34a6a5e06dbe595 (diff)
downloadcpython-398ef5c08feabfdbf7d0b1e10817139f0e98eefd.zip
cpython-398ef5c08feabfdbf7d0b1e10817139f0e98eefd.tar.gz
cpython-398ef5c08feabfdbf7d0b1e10817139f0e98eefd.tar.bz2
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 dfb42b6..138539b 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.