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 redstone-cold
Recipients redstone-cold
Date 2018-07-25.12:43:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532522604.07.0.56676864532.issue34221@psf.upfronthosting.co.za>
In-reply-to
Content
Since Python 3.7,dicts remember the order that items were inserted, so any plans to combine collections.OrderedDict with dict?
https://docs.python.org/3/library/collections.html?#collections.OrderedDict
https://docs.python.org/3/library/stdtypes.html#dict 

BTW, I think it would be better to move "Dictionaries preserve insertion order" part at the end of the doc of https://docs.python.org/3/library/stdtypes.html#dict 
up below the doc for 
class dict(**kwarg)
class dict(mapping, **kwarg)
class dict(iterable, **kwarg)
so that people won't miss the feature when consulting the doc
History
Date User Action Args
2018-07-25 12:43:24redstone-coldsetrecipients: + redstone-cold
2018-07-25 12:43:24redstone-coldsetmessageid: <1532522604.07.0.56676864532.issue34221@psf.upfronthosting.co.za>
2018-07-25 12:43:23redstone-coldlinkissue34221 messages
2018-07-25 12:43:23redstone-coldcreate