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 methane
Recipients adelfino, barry, eli.bendersky, ethan.furman, methane, pablogsal
Date 2018-06-15.02:34:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529030051.22.0.947875510639.issue33863@psf.upfronthosting.co.za>
In-reply-to
Content
> What do you mean by "a generic dictionary"? If it's a dict-like object, then it *must* be ordered starting with 3.7.

No.  Even though dict is ordered, no guarantee about ordering of "dictionary".  Glossary says:

  dictionary
  An associative array, where arbitrary keys are mapped to values. The keys can be any object with __hash__() and __eq__() methods. Called a hash in Perl.

So there can be dict-like object without preserving insertion order.
History
Date User Action Args
2018-06-15 02:34:11methanesetrecipients: + methane, barry, eli.bendersky, ethan.furman, pablogsal, adelfino
2018-06-15 02:34:11methanesetmessageid: <1529030051.22.0.947875510639.issue33863@psf.upfronthosting.co.za>
2018-06-15 02:34:11methanelinkissue33863 messages
2018-06-15 02:34:11methanecreate