summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-09 20:08:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-09 20:08:05 (GMT)
commit49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc (patch)
tree17a226d4ae765be61ec42dc61155dc44218c2161 /Misc
parent06060725b49a3600264402e9b1059ed23b97adb9 (diff)
downloadcpython-49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc.zip
cpython-49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc.tar.gz
cpython-49f5cdde1a5804c0ac0858e3778f7bd740f4a9fc.tar.bz2
Issue #28183: Optimize and cleanup dict iteration.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cb503c9..e4818f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.6.0 beta 2
Core and Builtins
-----------------
+- Issue #28183: Optimize and cleanup dict iteration.
+
- Issue #26081: Added C implementation of asyncio.Future.
Original patch by Yury Selivanov.