()
| 64 | |
| 65 | |
| 66 | def run() -> None: |
| 67 | print("# utf8_first_of_2") |
| 68 | show_char_table(UTF8_CLUES["utf8_first_of_2"], 0xC2, 0xDF) |
| 69 | print("# utf8_first_of_3") |
| 70 | show_char_table(UTF8_CLUES["utf8_first_of_3"], 0xE0, 0xEF) |
| 71 | print("# utf8_first_of_4") |
| 72 | show_char_table(UTF8_CLUES["utf8_first_of_4"], 0xF0, 0xF3) |
| 73 | print("# utf8_continuation") |
| 74 | print(r' "\x80-\xbf"') |
| 75 | show_char_table(UTF8_CLUES["utf8_continuation"][3:], 0x80, 0xBF) |
| 76 | print("# utf8_continuation_strict") |
| 77 | print(r' "\x80-\xbf"') |
| 78 | show_char_table(UTF8_CLUES["utf8_continuation_strict"][3:], 0x80, 0xBF) |
| 79 | |
| 80 | |
| 81 | if __name__ == "__main__": |
no test coverage detected