(vm: &VirtualMachine)
| 1208 | } |
| 1209 | |
| 1210 | pub fn cstring_error(vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 1211 | vm.new_value_error("embedded null character") |
| 1212 | } |
| 1213 | |
| 1214 | impl ToPyException for alloc::ffi::NulError { |
| 1215 | fn to_pyexception(&self, vm: &VirtualMachine) -> PyBaseExceptionRef { |
no outgoing calls
no test coverage detected