(s: str)
| 229 | |
| 230 | |
| 231 | def format_str_literal(s: str) -> bytes: |
| 232 | utf8 = s.encode("utf-8", errors="surrogatepass") |
| 233 | return format_int(len(utf8)) + utf8 |
| 234 | |
| 235 | |
| 236 | def _encode_int_values(values: dict[int, int]) -> list[bytes]: |
searching dependent graphs…