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 serhiy.storchaka
Recipients ned.deily, rhettinger, serhiy.storchaka
Date 2018-02-11.08:43:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518338587.28.0.467229070634.issue32792@psf.upfronthosting.co.za>
In-reply-to
Content
On PR 5586 we discussed reverting the order of the iteration by mappings. There are reasons of doing this. But this adds a subtle behavior change. Currently list(ChainMap({1: int}, {1.0: float})) returns [1]. With reversed() it will return [1.0]. This change LGTM.
History
Date User Action Args
2018-02-11 08:43:07serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, ned.deily
2018-02-11 08:43:07serhiy.storchakasetmessageid: <1518338587.28.0.467229070634.issue32792@psf.upfronthosting.co.za>
2018-02-11 08:43:07serhiy.storchakalinkissue32792 messages
2018-02-11 08:43:07serhiy.storchakacreate