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 srid
Recipients srid
Date 2009-07-24.21:09:01
SpamBayes Score 0.0051281075
Marked as misclassified No
Message-id <1248469742.19.0.668792274005.issue6566@psf.upfronthosting.co.za>
In-reply-to
Content
The simplest repro:

In [6]: json.dumps({None: 3})
Out[6]: '{"null": 3}'

In [7]: json.loads(json.dumps({None: 3}))
Out[7]: {u'null': 3}
History
Date User Action Args
2009-07-24 21:09:02sridsetrecipients: + srid
2009-07-24 21:09:02sridsetmessageid: <1248469742.19.0.668792274005.issue6566@psf.upfronthosting.co.za>
2009-07-24 21:09:01sridlinkissue6566 messages
2009-07-24 21:09:01sridcreate