(code)
| 197 | """) |
| 198 | |
| 199 | def map_table_b3(code): |
| 200 | r = b3_exceptions.get(ord(code)) |
| 201 | if r is not None: return r |
| 202 | return code.lower() |
| 203 | |
| 204 | # B.2 is case folding for NFKC. This is the same as B.3, |
| 205 | # except where NormalizeWithKC(Fold(a)) != |
no test coverage detected
searching dependent graphs…