(r)
| 52 | """Tests failures for passing invalid inputs to char-accepting functions""" |
| 53 | |
| 54 | def toobig_message(r): |
| 55 | return f"Character code point not in range({r:#x})" |
| 56 | |
| 57 | toolong_message = "Expected a character, but multi-character string found" |
| 58 |
no outgoing calls
no test coverage detected