(a)
| 206 | # NormalizeWithKC(Fold(NormalizeWithKC(Fold(a)))) |
| 207 | |
| 208 | def map_table_b2(a): |
| 209 | al = map_table_b3(a) |
| 210 | b = unicodedata.normalize("NFKC", al) |
| 211 | bl = "".join([map_table_b3(ch) for ch in b]) |
| 212 | c = unicodedata.normalize("NFKC", bl) |
| 213 | if b != c: |
| 214 | return c |
| 215 | else: |
| 216 | return al |
| 217 | |
| 218 | specials = {} |
| 219 | for k,v in table_b2.items(): |
no test coverage detected
searching dependent graphs…