[issue23181] Unicode code point should be two words in documentation

2015-01-18 Thread Georg Brandl

Georg Brandl added the comment:

Well, go ahead I guess.

--
nosy: +georg.brandl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-18 Thread Serhiy Storchaka

Changes by Serhiy Storchaka storch...@gmail.com:


--
status: closed - open

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-18 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 0353c7e5e0c2 by Serhiy Storchaka in branch '3.4':
Issue #23181: More codepoint - code point.
https://hg.python.org/cpython/rev/0353c7e5e0c2

New changeset c79abee84a39 by Serhiy Storchaka in branch 'default':
Issue #23181: More codepoint - code point.
https://hg.python.org/cpython/rev/c79abee84a39

New changeset 2db41d551a4f by Serhiy Storchaka in branch '2.7':
Issue #23181: More codepoint - code point.
https://hg.python.org/cpython/rev/2db41d551a4f

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-18 Thread Serhiy Storchaka

Changes by Serhiy Storchaka storch...@gmail.com:


--
assignee: docs@python - serhiy.storchaka
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-14 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

codepoint is still used in error messages, docstrings and comments.

Doc/library/json.rst:517::class:`str`) codepoints for such sequences.
Lib/email/message.py:276:# containing only ASCII codepoints 
in the unicode input).
Lib/html/entities.py:6:# maps the HTML entity name to the Unicode codepoint
Lib/html/entities.py:2498:# maps the Unicode codepoint to the HTML entity name
Lib/codecs.py:127: 'surrogateescape' - replace with private codepoints 
U+DCnn.
Lib/test/test_multibytecodec.py:83:# jisx0213 encoder is stateful for a 
few codepoints. eg)
Lib/test/test_html.py:51:# check invalid codepoints
Lib/test/test_html.py:54:# check more invalid codepoints
Lib/test/multibytecodec_support.py:24:unmappedunicode = '\udeee' # a 
unicode codepoint that is not mapped.
Lib/test/test_unicode.py:1473:# start bytes of a 2-byte sequence 
equivalent to codepoints  0x7F
Lib/test/test_unicode.py:1475:# start bytes of a 4-byte sequence 
equivalent to codepoints  0x10
Lib/test/test_stringprep.py:2:# Since we don't have them, this test checks only 
a few codepoints.
Tools/unicode/gencodec.py:37:# Placeholder for a missing codepoint
Modules/cjkcodecs/_codecs_hk.c:174:NEXT_IN(2); /* all decoded 
codepoints are pairs, above. */
Modules/cjkcodecs/cjkcodecs.h:15:/* a unicode undefined codepoint */
Modules/cjkcodecs/cjkcodecs.h:18:/* internal-use DBCS codepoints which aren't 
used by any charsets */
Modules/cjkcodecs/_codecs_cn.c:18:/* GBK and GB2312 map differently in few 
codepoints that are listed below:
Modules/cjkcodecs/_codecs_kr.c:72:/* All codepoints in CP949 
extension are in unicode
Modules/unicodedata.c:979:/* macros used to determine if the given codepoint is 
in the PUA range that
Modules/unicodedata.c:989:/* Find the name associated with the given 
codepoint.
Modules/unicodedata.c:1000:/* XXX should we just skip all the codepoints in 
the PUAs here? */
Modules/unicodedata.c:1128:/* if the codepoint is in the PUA range that we 
use for aliases,
Modules/unicodedata.c:1129: * convert it to obtain the right codepoint */
Modules/unicodedata.c:1141:/* Return the codepoint associated with the 
given name.
Modules/unicodedata.c:1143: * 3.2.0)).  If with_named_seq is 1, returns the 
PUA codepoint that we are
Objects/unicodeobject.c:5016:errmsg = codepoint in surrogate code 
point range(0xd800, 0xe000);
Objects/unicodeobject.c:5035:errmsg = codepoint not in 
range(0x11);
Python/sysmodule.c:1382:maxunicode -- the value of the largest Unicode 
codepoint\n\

--
nosy: +serhiy.storchaka

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-14 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Here is a patch which fixes remnants.

--
Added file: http://bugs.python.org/file37705/code_point_2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-13 Thread Roundup Robot

Roundup Robot added the comment:

New changeset c917ba25c007 by Georg Brandl in branch 'default':
Closes #23181: codepoint - code point
https://hg.python.org/cpython/rev/c917ba25c007

--
nosy: +python-dev
resolution:  - fixed
stage:  - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-13 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e280a04625cc by Georg Brandl in branch '2.7':
Closes #23181: codepoint - code point
https://hg.python.org/cpython/rev/e280a04625cc

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-13 Thread Al Sweigart

Changes by Al Sweigart asweig...@gmail.com:


--
versions: +Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23181] Unicode code point should be two words in documentation

2015-01-07 Thread Al Sweigart

New submission from Al Sweigart:

According to http://unicode.org/glossary/ codepoint is incorrect and should 
be changed to code point.

--
assignee: docs@python
components: Documentation
files: code_point_patch.diff
keywords: patch
messages: 233568
nosy: Al.Sweigart, docs@python
priority: normal
severity: normal
status: open
title: Unicode code point should be two words in documentation
type: behavior
versions: Python 3.4, Python 3.5
Added file: http://bugs.python.org/file37623/code_point_patch.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23181
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com