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.

classification
Title: remove non-ascii characters in docstring
Type: Stage: resolved
Components: Documentation Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, malin, methane
Priority: normal Keywords: patch

Created on 2019-02-24 13:36 by malin, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12018 merged malin, 2019-02-24 13:38
Messages (4)
msg336468 - (view) Author: Ma Lin (malin) * Date: 2019-02-24 13:36
replace ’(\u2019) with '(\x27)
msg336469 - (view) Author: Ma Lin (malin) * Date: 2019-02-24 13:45
only 3.8 branch has those non-ascii characters.
msg336488 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-02-24 23:18
New changeset 463572c8beb59fd9d6850440af48a5c5f4c0c0c9 by Inada Naoki (animalize) in branch 'master':
bpo-36101: remove non-ascii characters in docstring (GH-12018)
https://github.com/python/cpython/commit/463572c8beb59fd9d6850440af48a5c5f4c0c0c9
msg336489 - (view) Author: Inada Naoki (methane) * (Python committer) Date: 2019-02-24 23:20
thanks
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80282
2019-02-24 23:20:06methanesetstatus: open -> closed
resolution: fixed
messages: + msg336489

stage: patch review -> resolved
2019-02-24 23:18:52methanesetnosy: + methane
messages: + msg336488
2019-02-24 13:45:24malinsetmessages: + msg336469
versions: - Python 3.7
2019-02-24 13:38:03malinsetkeywords: + patch
stage: patch review
pull_requests: + pull_request12049
2019-02-24 13:36:09malincreate