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 ThiefMaster, eric.snow, rhettinger, serhiy.storchaka, stutzbach
Date 2013-11-06.21:29:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383773394.52.0.713267867568.issue19505@psf.upfronthosting.co.za>
In-reply-to
Content
We can't add __reversed__() to the Set or MappingView protocols without breaking third party code, but we can add it to concrete implementations of mapping views. In particular for views of OrderedDict which itself already have __reversed__().

Here is a patch which makes OrderedDict's views reversible.
History
Date User Action Args
2013-11-06 21:29:54serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, stutzbach, eric.snow, ThiefMaster
2013-11-06 21:29:54serhiy.storchakasetmessageid: <1383773394.52.0.713267867568.issue19505@psf.upfronthosting.co.za>
2013-11-06 21:29:54serhiy.storchakalinkissue19505 messages
2013-11-06 21:29:54serhiy.storchakacreate