diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2018-01-30 05:27:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-30 05:27:41 (GMT) |
commit | 05f91a42cd9575ef338a67bd04855b44f6ac20c2 (patch) | |
tree | 0580ed650fe580d81cc38781d154999092ff3b44 /Misc | |
parent | 04f99ba9d7186278eaf072e9a62c03aa63a8a6bb (diff) | |
download | cpython-05f91a42cd9575ef338a67bd04855b44f6ac20c2.zip cpython-05f91a42cd9575ef338a67bd04855b44f6ac20c2.tar.gz cpython-05f91a42cd9575ef338a67bd04855b44f6ac20c2.tar.bz2 |
[3.6] Revert "bpo-32690: Preserve order of locals() (GH-5379) (#5390)"
This reverts commit 9105879bfd7133ecbac67f3e9c0bacf6e477de5a
in order to keep the behaviour of locals() consistent between
3.6.4 and 3.6.5+.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst | 2 |
1 files changed, 0 insertions, 2 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 deleted file mode 100644 index 1663b96..0000000 --- a/Misc/NEWS.d/next/Core and Builtins/2018-01-28-09-26-07.bpo-32690.8i9g5P.rst +++ /dev/null @@ -1,2 +0,0 @@ -The locals() dictionary now displays in the lexical order that variables -were defined. Previously, the order was reversed. |