(ascii: str)
| 33 | |
| 34 | |
| 35 | def decode(ascii: str) -> str: |
| 36 | return codecs.decode(ascii, encoding="punycode") # type: ignore |
| 37 | |
| 38 | |
| 39 | def map_domain(string: str, fn: Callable[[str], str]) -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…