summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2018-01-28 17:40:24 (GMT)
committerGitHub <noreply@github.com>2018-01-28 17:40:24 (GMT)
commita4d00012565d716db6e6abe1b8f33eaaa4de416e (patch)
tree81da58a66bc351914cb94760250b66968bc3f185 /Misc
parent059f58ce938d9c3f0286412a4efb1b9131339421 (diff)
downloadcpython-a4d00012565d716db6e6abe1b8f33eaaa4de416e.zip
cpython-a4d00012565d716db6e6abe1b8f33eaaa4de416e.tar.gz
cpython-a4d00012565d716db6e6abe1b8f33eaaa4de416e.tar.bz2
bpo-32690: Preserve order of locals() (#5379)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst
new file mode 100644
index 0000000..1663b96
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst
@@ -0,0 +1,2 @@
+The locals() dictionary now displays in the lexical order that variables
+were defined. Previously, the order was reversed.