()
| 12 | |
| 13 | |
| 14 | def test_russian_crash(): |
| 15 | thebytes = b"\xe8\xed\xe2\xe5\xed\xf2\xe0\xf0\xe8\xe7\xe0\xf6\xe8\xff " |
| 16 | # We don't care what the result is, but this shouldn't crash |
| 17 | thebytes.decode("utf-8-variants", "replace") |
| 18 | |
| 19 | # This shouldn't crash either |
| 20 | guess_bytes(thebytes) |
nothing calls this directly
no test coverage detected