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 tberla
Recipients docs@python, tberla
Date 2017-11-24.19:14:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511550869.58.0.213398074469.issue32127@psf.upfronthosting.co.za>
In-reply-to
Content
in https://docs.python.org/3/tutorial/datastructures.html: 

-----
5.5. Dictionaries
...
Here is a small example using a dictionary:

>>>
>>> tel = {'jack': 4098, 'sape': 4139}
>>> tel['guido'] = 4127
>>> tel
{'sape': 4139, 'guido': 4127, 'jack': 4098}
-----

I think the order of dictionary elements shown after 'guido' is inserted is wrong.

The correct order is: 
{'jack': 4098, 'sape': 4139, 'guido': 4127}
History
Date User Action Args
2017-11-24 19:14:29tberlasetrecipients: + tberla, docs@python
2017-11-24 19:14:29tberlasetmessageid: <1511550869.58.0.213398074469.issue32127@psf.upfronthosting.co.za>
2017-11-24 19:14:29tberlalinkissue32127 messages
2017-11-24 19:14:29tberlacreate