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 vstinner
Recipients arigo, aronacher, eric.snow, methane, rhettinger, serhiy.storchaka, vstinner
Date 2017-12-16.01:42:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513388530.91.0.213398074469.issue31265@psf.upfronthosting.co.za>
In-reply-to
Content
Writing code compatible with Python older than 3.5 (like Python 2.7) requires to use OrderedDict. I expect that very few users will use "dict if sys.version_info >= (3, 6) else OrderedDict" to get an ordered dict.

OrderedDict remains useful when you need the methods added by the OrderedDict type.
History
Date User Action Args
2017-12-16 01:42:11vstinnersetrecipients: + vstinner, arigo, rhettinger, aronacher, methane, eric.snow, serhiy.storchaka
2017-12-16 01:42:10vstinnersetmessageid: <1513388530.91.0.213398074469.issue31265@psf.upfronthosting.co.za>
2017-12-16 01:42:10vstinnerlinkissue31265 messages
2017-12-16 01:42:09vstinnercreate