summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-20 06:35:18 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-20 06:35:18 (GMT)
commit299dc239fe79b06a7a270d0d9e3208f66f69d5b3 (patch)
tree35727ea35db2a17aca1edb530e4cb51526defcd2 /Misc
parentaecbef408d178d387fabfb0eda28e3f0221c9dd7 (diff)
parent398ef5c08feabfdbf7d0b1e10817139f0e98eefd (diff)
downloadcpython-299dc239fe79b06a7a270d0d9e3208f66f69d5b3.zip
cpython-299dc239fe79b06a7a270d0d9e3208f66f69d5b3.tar.gz
cpython-299dc239fe79b06a7a270d0d9e3208f66f69d5b3.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 9ab7398..32512fa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 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.