| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | import re, unicodedata, sys | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if sys.maxunicode == 65535: | 
					
						
							| 
									
										
										
										
											2007-08-22 23:05:06 +00:00
										 |  |  |     raise RuntimeError("need UCS-4 Python") | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def gen_category(cats): | 
					
						
							|  |  |  |     for i in range(0, 0x110000): | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |         if unicodedata.category(chr(i)) in cats: | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |             yield(i) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def gen_bidirectional(cats): | 
					
						
							|  |  |  |     for i in range(0, 0x110000): | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |         if unicodedata.bidirectional(chr(i)) in cats: | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |             yield(i) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def compact_set(l): | 
					
						
							|  |  |  |     single = [] | 
					
						
							|  |  |  |     tuple = [] | 
					
						
							|  |  |  |     prev = None | 
					
						
							|  |  |  |     span = 0 | 
					
						
							|  |  |  |     for e in l: | 
					
						
							|  |  |  |         if prev is None: | 
					
						
							|  |  |  |             prev = e | 
					
						
							|  |  |  |             span = 0 | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if prev+span+1 != e: | 
					
						
							|  |  |  |             if span > 2: | 
					
						
							|  |  |  |                 tuple.append((prev,prev+span+1)) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 for i in range(prev, prev+span+1): | 
					
						
							|  |  |  |                     single.append(i) | 
					
						
							|  |  |  |             prev = e | 
					
						
							|  |  |  |             span = 0 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             span += 1 | 
					
						
							|  |  |  |     if span: | 
					
						
							|  |  |  |         tuple.append((prev,prev+span+1)) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         single.append(prev) | 
					
						
							| 
									
										
										
										
											2007-05-07 22:24:25 +00:00
										 |  |  |     tuple = " + ".join(["list(range(%d,%d))" % t for t in tuple]) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |     if not single: | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  |         return "set(%s)" % tuple | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |     if not tuple: | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  |         return "set(%s)" % repr(single) | 
					
						
							|  |  |  |     return "set(%s + %s)" % (repr(single),tuple) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ############## Read the tables in the RFC ####################### | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | data = open("rfc3454.txt").readlines() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | tables = [] | 
					
						
							|  |  |  | curname = None | 
					
						
							|  |  |  | for l in data: | 
					
						
							|  |  |  |     l = l.strip() | 
					
						
							|  |  |  |     if not l: | 
					
						
							|  |  |  |         continue | 
					
						
							|  |  |  |     # Skip RFC page breaks | 
					
						
							|  |  |  |     if l.startswith("Hoffman & Blanchet") or\ | 
					
						
							|  |  |  |        l.startswith("RFC 3454"): | 
					
						
							|  |  |  |         continue | 
					
						
							|  |  |  |     # Find start/end lines | 
					
						
							|  |  |  |     m = re.match("----- (Start|End) Table ([A-Z](.[0-9])+) -----", l) | 
					
						
							|  |  |  |     if m: | 
					
						
							|  |  |  |         if m.group(1) == "Start": | 
					
						
							|  |  |  |             if curname: | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |                 raise RuntimeError("Double Start", (curname, l)) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |             curname = m.group(2) | 
					
						
							|  |  |  |             table = {} | 
					
						
							|  |  |  |             tables.append((curname, table)) | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if not curname: | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |                 raise RuntimeError("End without start", l) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |             curname = None | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |     if not curname: | 
					
						
							|  |  |  |         continue | 
					
						
							|  |  |  |     # Now we are in a table | 
					
						
							|  |  |  |     fields = l.split(";") | 
					
						
							|  |  |  |     if len(fields) > 1: | 
					
						
							|  |  |  |         # Drop comment field | 
					
						
							|  |  |  |         fields = fields[:-1] | 
					
						
							|  |  |  |     if len(fields) == 1: | 
					
						
							|  |  |  |         fields = fields[0].split("-") | 
					
						
							|  |  |  |         if len(fields) > 1: | 
					
						
							|  |  |  |             # range | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 start, end = fields | 
					
						
							|  |  |  |             except ValueError: | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |                 raise RuntimeError("Unpacking problem", l) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             start = end = fields[0] | 
					
						
							|  |  |  |         start = int(start, 16) | 
					
						
							|  |  |  |         end = int(end, 16) | 
					
						
							|  |  |  |         for i in range(start, end+1): | 
					
						
							|  |  |  |             table[i] = i | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         code, value = fields | 
					
						
							|  |  |  |         value = value.strip() | 
					
						
							|  |  |  |         if value: | 
					
						
							|  |  |  |             value = [int(v, 16) for v in value.split(" ")] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             # table B.1 | 
					
						
							|  |  |  |             value = None | 
					
						
							|  |  |  |         table[int(code, 16)] = value | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ########### Generate compact Python versions of the tables ############# | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""# This file is generated by mkstringprep.py. DO NOT EDIT.
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | \"\"\"Library that exposes various tables found in the StringPrep RFC 3454. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | There are two kinds of tables: sets, for which a member test is provided, | 
					
						
							|  |  |  | and mappings, for which a mapping function is provided. | 
					
						
							|  |  |  | \"\"\" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | import unicodedata | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("assert unicodedata.unidata_version == %s" % repr(unicodedata.unidata_version)) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # A.1 is the table of unassigned characters | 
					
						
							|  |  |  | # XXX Plane 15 PUA is listed as unassigned in Python. | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "A.1" | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | table = set(table.keys()) | 
					
						
							|  |  |  | Cn = set(gen_category(["Cn"])) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # FDD0..FDEF are process internal codes | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | Cn -= set(range(0xFDD0, 0xFDF0)) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | # not a character | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | Cn -= set(range(0xFFFE, 0x110000, 0x10000)) | 
					
						
							|  |  |  | Cn -= set(range(0xFFFF, 0x110000, 0x10000)) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # assert table == Cn | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_a1(code): | 
					
						
							|  |  |  |     if unicodedata.category(code) != 'Cn': return False | 
					
						
							|  |  |  |     c = ord(code) | 
					
						
							|  |  |  |     if 0xFDD0 <= c < 0xFDF0: return False | 
					
						
							|  |  |  |     return (c & 0xFFFF) not in (0xFFFE, 0xFFFF) | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # B.1 cannot easily be derived | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "B.1" | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | table = sorted(table.keys()) | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | b1_set = """ + compact_set(table) + """ | 
					
						
							|  |  |  | def in_table_b1(code): | 
					
						
							|  |  |  |     return ord(code) in b1_set | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # B.2 and B.3 is case folding. | 
					
						
							|  |  |  | # It takes CaseFolding.txt into account, which is | 
					
						
							|  |  |  | # not available in the Python database. Since | 
					
						
							|  |  |  | # B.2 is derived from B.3, we process B.3 first. | 
					
						
							|  |  |  | # B.3 supposedly *is* CaseFolding-3.2.0.txt. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | name, table_b2 = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "B.2" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | name, table_b3 = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "B.3" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # B.3 is mostly Python's .lower, except for a number | 
					
						
							|  |  |  | # of special cases, e.g. considering canonical forms. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | b3_exceptions = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for k,v in table_b2.items(): | 
					
						
							|  |  |  |     if map(ord, unichr(k).lower()) != v: | 
					
						
							|  |  |  |         b3_exceptions[k] = u"".join(map(unichr,v)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | b3 = sorted(b3_exceptions.items()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							|  |  |  | b3_exceptions = {""")
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | for i,(k,v) in enumerate(b3): | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  |     print("0x%x:%s," % (k, repr(v)), end=' ') | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |     if i % 4 == 3: | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  |         print() | 
					
						
							|  |  |  | print("}") | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def map_table_b3(code): | 
					
						
							|  |  |  |     r = b3_exceptions.get(ord(code)) | 
					
						
							|  |  |  |     if r is not None: return r | 
					
						
							|  |  |  |     return code.lower() | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def map_table_b3(code): | 
					
						
							|  |  |  |     r = b3_exceptions.get(ord(code)) | 
					
						
							|  |  |  |     if r is not None: return r | 
					
						
							|  |  |  |     return code.lower() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # B.2 is case folding for NFKC. This is the same as B.3, | 
					
						
							|  |  |  | # except where NormalizeWithKC(Fold(a)) != | 
					
						
							|  |  |  | # NormalizeWithKC(Fold(NormalizeWithKC(Fold(a)))) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def map_table_b2(a): | 
					
						
							|  |  |  |     al = map_table_b3(a) | 
					
						
							|  |  |  |     b = unicodedata.normalize("NFKC", al) | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |     bl = "".join([map_table_b3(ch) for ch in b]) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |     c = unicodedata.normalize("NFKC", bl) | 
					
						
							|  |  |  |     if b != c: | 
					
						
							|  |  |  |         return c | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return al | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | specials = {} | 
					
						
							|  |  |  | for k,v in table_b2.items(): | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  |     if list(map(ord, map_table_b2(chr(k)))) != v: | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  |         specials[k] = v | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # B.3 should not add any additional special cases | 
					
						
							|  |  |  | assert specials == {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def map_table_b2(a): | 
					
						
							|  |  |  |     al = map_table_b3(a) | 
					
						
							|  |  |  |     b = unicodedata.normalize("NFKC", al) | 
					
						
							|  |  |  |     bl = u"".join([map_table_b3(ch) for ch in b]) | 
					
						
							|  |  |  |     c = unicodedata.normalize("NFKC", bl) | 
					
						
							|  |  |  |     if b != c: | 
					
						
							|  |  |  |         return c | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return al | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.1.1 is a table with a single character | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.1.1" | 
					
						
							|  |  |  | assert table == {0x20:0x20} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c11(code): | 
					
						
							|  |  |  |     return code == u" " | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.1.2 is the rest of all space characters | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.1.2" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | # table = set(table.keys()) | 
					
						
							|  |  |  | # Zs = set(gen_category(["Zs"])) - set([0x20]) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | # assert Zs == table | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c12(code): | 
					
						
							|  |  |  |     return unicodedata.category(code) == "Zs" and code != u" " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def in_table_c11_c12(code): | 
					
						
							|  |  |  |     return unicodedata.category(code) == "Zs" | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.2.1 ASCII control characters | 
					
						
							|  |  |  | name, table_c21 = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.2.1" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | Cc = set(gen_category(["Cc"])) | 
					
						
							|  |  |  | Cc_ascii = Cc & set(range(128)) | 
					
						
							|  |  |  | table_c21 = set(table_c21.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | assert Cc_ascii == table_c21 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c21(code): | 
					
						
							|  |  |  |     return ord(code) < 128 and unicodedata.category(code) == "Cc" | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.2.2 Non-ASCII control characters. It also includes | 
					
						
							|  |  |  | # a number of characters in category Cf. | 
					
						
							|  |  |  | name, table_c22 = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.2.2" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Cc_nonascii = Cc - Cc_ascii | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | table_c22 = set(table_c22.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | assert len(Cc_nonascii - table_c22) == 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | specials = list(table_c22 - Cc_nonascii) | 
					
						
							|  |  |  | specials.sort() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""c22_specials = """ + compact_set(specials) + """
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c22(code): | 
					
						
							|  |  |  |     c = ord(code) | 
					
						
							|  |  |  |     if c < 128: return False | 
					
						
							|  |  |  |     if unicodedata.category(code) == "Cc": return True | 
					
						
							|  |  |  |     return c in c22_specials | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def in_table_c21_c22(code): | 
					
						
							|  |  |  |     return unicodedata.category(code) == "Cc" or \\ | 
					
						
							|  |  |  |            ord(code) in c22_specials | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.3 Private use | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.3" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | Co = set(gen_category(["Co"])) | 
					
						
							|  |  |  | assert set(table.keys()) == Co | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c3(code): | 
					
						
							|  |  |  |     return unicodedata.category(code) == "Co" | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.4 Non-character code points, xFFFE, xFFFF | 
					
						
							|  |  |  | # plus process internal codes | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.4" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | nonchar = set(range(0xFDD0,0xFDF0)) | 
					
						
							|  |  |  | nonchar.update(range(0xFFFE,0x110000,0x10000)) | 
					
						
							|  |  |  | nonchar.update(range(0xFFFF,0x110000,0x10000)) | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | table = set(table.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | assert table == nonchar | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c4(code): | 
					
						
							|  |  |  |     c = ord(code) | 
					
						
							|  |  |  |     if c < 0xFDD0: return False | 
					
						
							|  |  |  |     if c < 0xFDF0: return True | 
					
						
							|  |  |  |     return (ord(code) & 0xFFFF) in (0xFFFE, 0xFFFF) | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.5 Surrogate codes | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.5" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | Cs = set(gen_category(["Cs"])) | 
					
						
							|  |  |  | assert set(table.keys()) == Cs | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_c5(code): | 
					
						
							|  |  |  |     return unicodedata.category(code) == "Cs" | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.6 Inappropriate for plain text | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.6" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | table = sorted(table.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | c6_set = """ + compact_set(table) + """ | 
					
						
							|  |  |  | def in_table_c6(code): | 
					
						
							|  |  |  |     return ord(code) in c6_set | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.7 Inappropriate for canonical representation | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.7" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | table = sorted(table.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | c7_set = """ + compact_set(table) + """ | 
					
						
							|  |  |  | def in_table_c7(code): | 
					
						
							|  |  |  |     return ord(code) in c7_set | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.8 Change display properties or are deprecated | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.8" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | table = sorted(table.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | c8_set = """ + compact_set(table) + """ | 
					
						
							|  |  |  | def in_table_c8(code): | 
					
						
							|  |  |  |     return ord(code) in c8_set | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # C.9 Tagging characters | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "C.9" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-16 17:02:34 +00:00
										 |  |  | table = sorted(table.keys()) | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | c9_set = """ + compact_set(table) + """ | 
					
						
							|  |  |  | def in_table_c9(code): | 
					
						
							|  |  |  |     return ord(code) in c9_set | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # D.1 Characters with bidirectional property "R" or "AL" | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "D.1" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | RandAL = set(gen_bidirectional(["R","AL"])) | 
					
						
							|  |  |  | assert set(table.keys()) == RandAL | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_d1(code): | 
					
						
							|  |  |  |     return unicodedata.bidirectional(code) in ("R","AL") | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # D.2 Characters with bidirectional property "L" | 
					
						
							|  |  |  | name, table = tables[0] | 
					
						
							|  |  |  | del tables[0] | 
					
						
							|  |  |  | assert name == "D.2" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-19 19:10:18 +00:00
										 |  |  | L = set(gen_bidirectional(["L"])) | 
					
						
							|  |  |  | assert set(table.keys()) == L | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | print("""
 | 
					
						
							| 
									
										
										
										
											2003-04-18 10:39:54 +00:00
										 |  |  | def in_table_d2(code): | 
					
						
							|  |  |  |     return unicodedata.bidirectional(code) == "L" | 
					
						
							| 
									
										
										
										
											2007-08-03 17:06:41 +00:00
										 |  |  | """)
 |