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 ernest
Recipients docs@python, ernest
Date 2013-03-01.21:31:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362173463.23.0.943587603223.issue17332@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

On these pages:

http://docs.python.org/3.4/library/json.html
http://docs.python.org/3.3/library/json.html
http://docs.python.org/3.2/library/json.html
http://docs.python.org/2/library/json.html
http://docs.python.org/2.6/library/json.html

This line says "convered" but should be "converted."

Note Keys in key/value pairs of JSON are always of the type str. When a dictionary is converted into JSON, all the keys of the dictionary are coerced to strings. As a result of this, if a dictionary is convered into JSON and then back into a dictionary, the dictionary may not equal the original one. That is, loads(dumps(x)) != x if x has non-string keys.
History
Date User Action Args
2013-03-01 21:31:03ernestsetrecipients: + ernest, docs@python
2013-03-01 21:31:03ernestsetmessageid: <1362173463.23.0.943587603223.issue17332@psf.upfronthosting.co.za>
2013-03-01 21:31:03ernestlinkissue17332 messages
2013-03-01 21:31:03ernestcreate