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 serhiy.storchaka
Recipients ezio.melotti, pitrou, rhettinger, serhiy.storchaka, ztane
Date 2013-08-06.12:29:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1375792167.0.0.931522681563.issue18290@psf.upfronthosting.co.za>
In-reply-to
Content
I think this is not JSON issue. If you need escaping of some domain-specific characters, do it youself. I.e.

    json.dump(...).replace('\u2028', r'\u2028').replace('\u2029', r'\u2029').replace('</', r'\u003c\u002f')
History
Date User Action Args
2013-08-06 12:29:27serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, pitrou, ezio.melotti, ztane
2013-08-06 12:29:27serhiy.storchakasetmessageid: <1375792167.0.0.931522681563.issue18290@psf.upfronthosting.co.za>
2013-08-06 12:29:26serhiy.storchakalinkissue18290 messages
2013-08-06 12:29:26serhiy.storchakacreate