[issue14042] json.dumps() documentation is slightly incorrect.

2012-09-01 Thread Petri Lehtinen
Petri Lehtinen added the comment: Fixed, see #13769. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue14042] json.dumps() documentation is slightly incorrect.

2012-08-28 Thread Petri Lehtinen
Petri Lehtinen added the comment: This is a documentation bug for 2.7. Setting as duplicate of #13769. -- nosy: +petri.lehtinen resolution: -> duplicate stage: needs patch -> committed/rejected status: open -> closed superseder: -> json.dump(ensure_ascii=False) return str instead of un

[issue14042] json.dumps() documentation is slightly incorrect.

2012-02-18 Thread Ezio Melotti
Ezio Melotti added the comment: See #13770 and #13769. -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue14042] json.dumps() documentation is slightly incorrect.

2012-02-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Entry for dump says "If ensure_ascii is False (default: True), then some chunks written to fp may be unicode instances," Entry for dumps says "If ensure_ascii is False, then the return value will be a unicode instance." Entry for JSONEncoder says "If ensure_asc

[issue14042] json.dumps() documentation is slightly incorrect.

2012-02-17 Thread Tom Christie
New submission from Tom Christie : 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