(code)
| 219 | |
| 220 | c22_specials = set([1757, 1807, 6158, 8204, 8205, 8232, 8233, 65279] + list(range(8288,8292)) + list(range(8298,8304)) + list(range(65529,65533)) + list(range(119155,119163))) |
| 221 | def in_table_c22(code): |
| 222 | c = ord(code) |
| 223 | if c < 128: return False |
| 224 | if unicodedata.category(code) == "Cc": return True |
| 225 | return c in c22_specials |
| 226 | |
| 227 | def in_table_c21_c22(code): |
| 228 | return unicodedata.category(code) == "Cc" or \ |