Issue 13715: typo in unicodedata documentation (original) (raw)

Issue13715

Created on 2012-01-05 16:47 by eli.collins, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
docfix.patch eli.collins,2012-01-05 16:47 review
Messages (3)
msg150670 - (view) Author: Eli Collins (eli.collins) * Date: 2012-01-05 16:47
I noticed a minor typo in the unicodedata.normalize() documentation... The line reading 'U+0327 (COMBINING CEDILLA) U+0043 (LATIN CAPITAL LETTER C)' is not proper unicode, it should be in the reverse order: 'U+0043 (LATIN CAPITAL LETTER C) U+0327 (COMBINING CEDILLA)'. attached is a small patch to fix this.
msg151329 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-01-16 06:46
New changeset b4dac315feef by Ezio Melotti in branch '2.7': #13715: fix typo in unicodedata doc. Patch by Eli Collins. http://hg.python.org/cpython/rev/b4dac315feef New changeset f50ff6dd6b41 by Ezio Melotti in branch '3.2': #13715: fix typo in unicodedata doc. Patch by Eli Collins. http://hg.python.org/cpython/rev/f50ff6dd6b41 New changeset f1408e41e306 by Ezio Melotti in branch 'default': #13715: merge with 3.2. http://hg.python.org/cpython/rev/f1408e41e306
msg151330 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-01-16 06:47
Fixed, thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:57:25 admin set github: 57924
2012-01-16 06:47:30 ezio.melotti set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2012-01-16 06:46:19 python-dev set nosy: + python-devmessages: +
2012-01-05 17:24:18 ezio.melotti set versions: - Python 2.6, Python 3.1, Python 3.4nosy: + ezio.melottiassignee: docs@python -> ezio.melottitype: enhancementstage: patch review
2012-01-05 16:47:20 eli.collins create