(message: impl Into<String>, vm: &VirtualMachine)
| 461 | } |
| 462 | |
| 463 | fn new_error(message: impl Into<String>, vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 464 | new_zlib_error(message, vm) |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | fn new_zlib_error(message: impl Into<String>, vm: &VirtualMachine) -> PyBaseExceptionRef { |
nothing calls this directly
no test coverage detected