mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Issue #15239: Make mkstringprep.py work again on Python 3.
This commit is contained in:
parent
3af14aaba5
commit
e7275ffa4c
2 changed files with 28 additions and 17 deletions
|
@ -107,6 +107,11 @@ Documentation
|
||||||
- Issue #17977: The documentation for the cadefault argument's default value
|
- Issue #17977: The documentation for the cadefault argument's default value
|
||||||
in urllib.request.urlopen() is fixed to match the code.
|
in urllib.request.urlopen() is fixed to match the code.
|
||||||
|
|
||||||
|
Tools/Demos
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- Issue #15239: Make mkstringprep.py work again on Python 3.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 3.3.2?
|
What's New in Python 3.3.2?
|
||||||
===========================
|
===========================
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import re, unicodedata, sys
|
import re, sys
|
||||||
|
from unicodedata import ucd_3_2_0 as unicodedata
|
||||||
|
|
||||||
if sys.maxunicode == 65535:
|
if sys.maxunicode == 65535:
|
||||||
raise RuntimeError("need UCS-4 Python")
|
raise RuntimeError("need UCS-4 Python")
|
||||||
|
@ -37,16 +38,20 @@ def compact_set(l):
|
||||||
tuple.append((prev,prev+span+1))
|
tuple.append((prev,prev+span+1))
|
||||||
else:
|
else:
|
||||||
single.append(prev)
|
single.append(prev)
|
||||||
tuple = " + ".join(["list(range(%d,%d))" % t for t in tuple])
|
if not single and len(tuple) == 1:
|
||||||
|
tuple = "range(%d,%d)" % tuple[0]
|
||||||
|
else:
|
||||||
|
tuple = " + ".join("list(range(%d,%d))" % t for t in tuple)
|
||||||
if not single:
|
if not single:
|
||||||
return "set(%s)" % tuple
|
return "set(%s)" % tuple
|
||||||
if not tuple:
|
if not tuple:
|
||||||
return "set(%s)" % repr(single)
|
return "set(%r)" % (single,)
|
||||||
return "set(%s + %s)" % (repr(single),tuple)
|
return "set(%r + %s)" % (single, tuple)
|
||||||
|
|
||||||
############## Read the tables in the RFC #######################
|
############## Read the tables in the RFC #######################
|
||||||
|
|
||||||
data = open("rfc3454.txt").readlines()
|
with open("rfc3454.txt") as f:
|
||||||
|
data = f.readlines()
|
||||||
|
|
||||||
tables = []
|
tables = []
|
||||||
curname = None
|
curname = None
|
||||||
|
@ -55,8 +60,7 @@ for l in data:
|
||||||
if not l:
|
if not l:
|
||||||
continue
|
continue
|
||||||
# Skip RFC page breaks
|
# Skip RFC page breaks
|
||||||
if l.startswith("Hoffman & Blanchet") or\
|
if l.startswith(("Hoffman & Blanchet", "RFC 3454")):
|
||||||
l.startswith("RFC 3454"):
|
|
||||||
continue
|
continue
|
||||||
# Find start/end lines
|
# Find start/end lines
|
||||||
m = re.match("----- (Start|End) Table ([A-Z](.[0-9])+) -----", l)
|
m = re.match("----- (Start|End) Table ([A-Z](.[0-9])+) -----", l)
|
||||||
|
@ -71,6 +75,8 @@ for l in data:
|
||||||
else:
|
else:
|
||||||
if not curname:
|
if not curname:
|
||||||
raise RuntimeError("End without start", l)
|
raise RuntimeError("End without start", l)
|
||||||
|
if curname != m.group(2):
|
||||||
|
raise RuntimeError("Unexpected end", l)
|
||||||
curname = None
|
curname = None
|
||||||
continue
|
continue
|
||||||
if not curname:
|
if not curname:
|
||||||
|
@ -113,10 +119,10 @@ There are two kinds of tables: sets, for which a member test is provided,
|
||||||
and mappings, for which a mapping function is provided.
|
and mappings, for which a mapping function is provided.
|
||||||
\"\"\"
|
\"\"\"
|
||||||
|
|
||||||
import unicodedata
|
from unicodedata import ucd_3_2_0 as unicodedata
|
||||||
""")
|
""")
|
||||||
|
|
||||||
print("assert unicodedata.unidata_version == %s" % repr(unicodedata.unidata_version))
|
print("assert unicodedata.unidata_version == %r" % (unicodedata.unidata_version,))
|
||||||
|
|
||||||
# A.1 is the table of unassigned characters
|
# A.1 is the table of unassigned characters
|
||||||
# XXX Plane 15 PUA is listed as unassigned in Python.
|
# XXX Plane 15 PUA is listed as unassigned in Python.
|
||||||
|
@ -173,15 +179,15 @@ assert name == "B.3"
|
||||||
b3_exceptions = {}
|
b3_exceptions = {}
|
||||||
|
|
||||||
for k,v in table_b2.items():
|
for k,v in table_b2.items():
|
||||||
if map(ord, unichr(k).lower()) != v:
|
if list(map(ord, chr(k).lower())) != v:
|
||||||
b3_exceptions[k] = u"".join(map(unichr,v))
|
b3_exceptions[k] = "".join(map(chr,v))
|
||||||
|
|
||||||
b3 = sorted(b3_exceptions.items())
|
b3 = sorted(b3_exceptions.items())
|
||||||
|
|
||||||
print("""
|
print("""
|
||||||
b3_exceptions = {""")
|
b3_exceptions = {""")
|
||||||
for i,(k,v) in enumerate(b3):
|
for i, kv in enumerate(b3):
|
||||||
print("0x%x:%s," % (k, repr(v)), end=' ')
|
print("0x%x:%a," % kv, end=' ')
|
||||||
if i % 4 == 3:
|
if i % 4 == 3:
|
||||||
print()
|
print()
|
||||||
print("}")
|
print("}")
|
||||||
|
@ -224,7 +230,7 @@ print("""
|
||||||
def map_table_b2(a):
|
def map_table_b2(a):
|
||||||
al = map_table_b3(a)
|
al = map_table_b3(a)
|
||||||
b = unicodedata.normalize("NFKC", al)
|
b = unicodedata.normalize("NFKC", al)
|
||||||
bl = u"".join([map_table_b3(ch) for ch in b])
|
bl = "".join([map_table_b3(ch) for ch in b])
|
||||||
c = unicodedata.normalize("NFKC", bl)
|
c = unicodedata.normalize("NFKC", bl)
|
||||||
if b != c:
|
if b != c:
|
||||||
return c
|
return c
|
||||||
|
@ -240,7 +246,7 @@ assert table == {0x20:0x20}
|
||||||
|
|
||||||
print("""
|
print("""
|
||||||
def in_table_c11(code):
|
def in_table_c11(code):
|
||||||
return code == u" "
|
return code == " "
|
||||||
""")
|
""")
|
||||||
|
|
||||||
# C.1.2 is the rest of all space characters
|
# C.1.2 is the rest of all space characters
|
||||||
|
@ -249,12 +255,12 @@ del tables[0]
|
||||||
assert name == "C.1.2"
|
assert name == "C.1.2"
|
||||||
|
|
||||||
# table = set(table.keys())
|
# table = set(table.keys())
|
||||||
# Zs = set(gen_category(["Zs"])) - set([0x20])
|
# Zs = set(gen_category(["Zs"])) - {0x20}
|
||||||
# assert Zs == table
|
# assert Zs == table
|
||||||
|
|
||||||
print("""
|
print("""
|
||||||
def in_table_c12(code):
|
def in_table_c12(code):
|
||||||
return unicodedata.category(code) == "Zs" and code != u" "
|
return unicodedata.category(code) == "Zs" and code != " "
|
||||||
|
|
||||||
def in_table_c11_c12(code):
|
def in_table_c11_c12(code):
|
||||||
return unicodedata.category(code) == "Zs"
|
return unicodedata.category(code) == "Zs"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue