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 tomchristie
Recipients tomchristie
Date 2012-02-17.16:07:49
SpamBayes Score 0.00017421435
Marked as misclassified No
Message-id <1329494870.59.0.571991231564.issue14042@psf.upfronthosting.co.za>
In-reply-to
Content
json.dumps() documentation is slightly incorrect.

http://docs.python.org/library/json.html#json.dumps

Reads:

  "If ensure_ascii is False, then the return value will be a unicode instance."

Should read:

  "If ensure_ascii is False, then the return value MAY BE be a unicode instance."

(Without the caps of course)

bash: python
Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) 
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> type(json.dumps({'a': 1}, ensure_ascii=False))
<type 'str'>

Tested against 2.6 and 2.7.
History
Date User Action Args
2012-02-17 16:07:50tomchristiesetrecipients: + tomchristie
2012-02-17 16:07:50tomchristiesetmessageid: <1329494870.59.0.571991231564.issue14042@psf.upfronthosting.co.za>
2012-02-17 16:07:49tomchristielinkissue14042 messages
2012-02-17 16:07:49tomchristiecreate