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 taleinat
Recipients beazley, georg.brandl, taleinat
Date 2010-06-04.15:10:10
SpamBayes Score 0.034597423
Marked as misclassified No
Message-id <1275664213.31.0.634488336688.issue4785@psf.upfronthosting.co.za>
In-reply-to
Content
This goes down into _json.scanstring. Looking at the C code for scanstring_unicode, the strict parameter allow control characters inside strings: "if strict is zero then literal control characters are allowed". From the code itself (current py3k head, r81032), it seems this means any character <= 0x1f. See scanstring_unicode in http://svn.python.org/view/python/branches/py3k/Modules/_json.c?revision=81032&view=markup for details.

Documentation should be updated accordingly.
History
Date User Action Args
2010-06-04 15:10:13taleinatsetrecipients: + taleinat, georg.brandl, beazley
2010-06-04 15:10:13taleinatsetmessageid: <1275664213.31.0.634488336688.issue4785@psf.upfronthosting.co.za>
2010-06-04 15:10:11taleinatlinkissue4785 messages
2010-06-04 15:10:10taleinatcreate