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: typo in unicodedata documentation
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, eli.collins, ezio.melotti, python-dev
Priority: normal Keywords: patch

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:25adminsetgithub: 57924
2012-01-16 06:47:30ezio.melottisetstatus: open -> closed
resolution: fixed
messages: + msg151330

stage: patch review -> resolved
2012-01-16 06:46:19python-devsetnosy: + python-dev
messages: + msg151329
2012-01-05 17:24:18ezio.melottisetversions: - Python 2.6, Python 3.1, Python 3.4
nosy: + ezio.melotti

assignee: docs@python -> ezio.melotti
type: enhancement
stage: patch review
2012-01-05 16:47:20eli.collinscreate