[issue13770] python3 & json: add ensure_ascii documentation

2012-02-25 Thread Éric Araujo
Éric Araujo added the comment: json in 2.7 works a bit differently; ensure_ascii is already documented there. Closing, please reopen if the new doc is not to your satisfaction. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: -Python 2.7 __

[issue13770] python3 & json: add ensure_ascii documentation

2012-02-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 33d6da1b1c71 by Éric Araujo in branch '3.2': Document json.dump ensure_ascii parameter (#13770) http://hg.python.org/cpython/rev/33d6da1b1c71 New changeset 1cb9b8126534 by Éric Araujo in branch 'default': Merge edits from 3.2 (#13716, #1040439, #29

[issue13770] python3 & json: add ensure_ascii documentation

2012-02-03 Thread Éric Araujo
Éric Araujo added the comment: FTR I’ve fixed this and now need to find a place with SSH access so I can push. -- ___ Python tracker ___

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-14 Thread Éric Araujo
Éric Araujo added the comment: All right. I’ll do like other parameters (see check_circular for an example) and just duplicate the two-line doc. -- assignee: docs@python -> eric.araujo versions: +Python 2.7 ___ Python tracker

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-14 Thread Марк Коренберг
Марк Коренберг added the comment: ensure_ascii is documented only in Jsonencoder class. Other functions like dumps() should refer to this class description for that parameter. -- ___ Python tracker __

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti versions: -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-13 Thread Éric Araujo
Éric Araujo added the comment: Most probably. The text model of Python has no bearing on the JSON spec, and 2.x as well as 3.x Pythons may want to output UTF-8 JSON or JavaScript-escaped ASCII-only JSON. What specific wording is an issue? -- nosy: +eric.araujo versions: -Python 3.4

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-11 Thread Марк Коренберг
Changes by Марк Коренберг : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue13770] python3 & json: add ensure_ascii documentation

2012-01-11 Thread Марк Коренберг
New submission from Марк Коренберг : Please fix documentation about ensure_ascii. Does it have any meaning in python3? -- assignee: docs@python components: Documentation messages: 151067 nosy: docs@python, mmarkk priority: normal severity: normal status: open title: python3 & json: add