summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-28 19:30:26 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-05-28 19:30:26 (GMT)
commitee85339cc69af6b29a37b85a5695fb9c12f0f0a3 (patch)
tree01f7a995722d516c61b70e1578d43628ab1f2a9f /Misc
parent44e625860bf4c24a811eb81c7953a71671c89608 (diff)
downloadcpython-ee85339cc69af6b29a37b85a5695fb9c12f0f0a3.zip
cpython-ee85339cc69af6b29a37b85a5695fb9c12f0f0a3.tar.gz
cpython-ee85339cc69af6b29a37b85a5695fb9c12f0f0a3.tar.bz2
in dict displays, evaluate the key before the value (closes #11205)
Patch partially by Steve Dougherty.
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 7da41ce..2eb187e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ Release date: 2015-07-05
Core and Builtins
-----------------
+- Issue #11205: In dictionary displays, evaluate the key before the value.
+
- Issue #24285: Fixed regression that prevented importing extension modules
from inside packages. Patch by Petr Viktorin.