[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-25 Thread Raymond Hettinger
Raymond Hettinger added the comment: This is already covered here: https://docs.python.org/3/library/stdtypes.html#dict and here: https://docs.python.org/3/library/collections.html#ordereddict-objects -- resolution: -> out of date stage: -> resolved status: open -> closed __

[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: See also https://bugs.python.org/issue33609 . -- nosy: +xtreak ___ Python tracker ___ _

[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-24 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +inada.naoki, rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue39446] Documentation should reflect that all dicts are now ordered

2020-01-24 Thread Michael Shields
New submission from Michael Shields : As of Python 3.7, dicts always preserve insertion order. This is mentioned briefly in the release notes, but it would also be helpful to mention it in the language reference, and in the discussion of collections.OrderedDict. -- assignee: docs@pyth