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 louielu
Recipients eric.smith, louielu, nitishch
Date 2017-06-14.13:21:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497446481.02.0.360069543437.issue30664@psf.upfronthosting.co.za>
In-reply-to
Content
Additional note, the order will changed it random way in ChainMap, e.g.:


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

-----restart----

>>> for k, v in ChainMap({'a': 0, 'b': 1, 'c': 2}, {'b': 3, 'a': 4}).items(): print(k, v)
...
b 1
c 2
a 0
History
Date User Action Args
2017-06-14 13:21:21louielusetrecipients: + louielu, eric.smith, nitishch
2017-06-14 13:21:21louielusetmessageid: <1497446481.02.0.360069543437.issue30664@psf.upfronthosting.co.za>
2017-06-14 13:21:21louielulinkissue30664 messages
2017-06-14 13:21:20louielucreate