This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, louielu, nitishch
Date 2017-06-14.13:17:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497446232.17.0.73294654408.issue30664@psf.upfronthosting.co.za>
In-reply-to
Content
Good question.

It looks like ChainMap does something I wouldn't expect:

>>> for k, v in ChainMap({'a': 0, 'b': 1, 'c': 2}, {'b': 3, 'a': 4}).items():
...  print(k, v)
... 
b 1
a 0
c 2

Once we define what we'd like the output to look like, I'm sure it would be easy enough to get the order right.
History
Date User Action Args
2017-06-14 13:17:12eric.smithsetrecipients: + eric.smith, louielu, nitishch
2017-06-14 13:17:12eric.smithsetmessageid: <1497446232.17.0.73294654408.issue30664@psf.upfronthosting.co.za>
2017-06-14 13:17:12eric.smithlinkissue30664 messages
2017-06-14 13:17:12eric.smithcreate