summaryrefslogtreecommitdiff
path: root/Tools/unicode/gencodec.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-18 11:28:37 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-18 11:28:37 +0200
commitd3faf43f9ba7da0ae504c9186b10d0fa3a8eb300 (patch)
tree1e6ffa87d3c0087fc5bb3509bc9ef455ce98c7ff /Tools/unicode/gencodec.py
parentb2653b344e01710a99bc782a0b9e4b4d0f8eed5f (diff)
downloadcpython-git-d3faf43f9ba7da0ae504c9186b10d0fa3a8eb300.tar.gz
Issue #23181: More "codepoint" -> "code point".
Diffstat (limited to 'Tools/unicode/gencodec.py')
-rw-r--r--Tools/unicode/gencodec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/unicode/gencodec.py b/Tools/unicode/gencodec.py
index f4c7c038c4..98b39758f9 100644
--- a/Tools/unicode/gencodec.py
+++ b/Tools/unicode/gencodec.py
@@ -34,7 +34,7 @@ MAX_TABLE_SIZE = 8192
# Standard undefined Unicode code point
UNI_UNDEFINED = chr(0xFFFE)
-# Placeholder for a missing codepoint
+# Placeholder for a missing code point
MISSING_CODE = -1
mapRE = re.compile('((?:0x[0-9a-fA-F]+\+?)+)'