diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-02-11 08:30:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-11 08:30:31 (GMT) |
commit | 3793f95f98c3112ce447288a5bf9899eb9e35423 (patch) | |
tree | 7c7b62ce2d585c9ec90ed1b502dd4881bd37e739 /Misc | |
parent | 8d1f2f40389c476d9240ec87a33da0373597c6af (diff) | |
download | cpython-3793f95f98c3112ce447288a5bf9899eb9e35423.zip cpython-3793f95f98c3112ce447288a5bf9899eb9e35423.tar.gz cpython-3793f95f98c3112ce447288a5bf9899eb9e35423.tar.bz2 |
bpo-32792: Preserve mapping order in ChainMap() (GH-5586)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-02-08-00-47-07.bpo-32792.NtyDb4.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-08-00-47-07.bpo-32792.NtyDb4.rst b/Misc/NEWS.d/next/Library/2018-02-08-00-47-07.bpo-32792.NtyDb4.rst new file mode 100644 index 0000000..1f7df62 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-02-08-00-47-07.bpo-32792.NtyDb4.rst @@ -0,0 +1 @@ +collections.ChainMap() preserves the order of the underlying mappings. |