(vm: &VirtualMachine, msg: String)
| 3360 | timeout_error_msg(vm, "timed out".to_owned()) |
| 3361 | } |
| 3362 | pub(crate) fn timeout_error_msg(vm: &VirtualMachine, msg: String) -> PyRef<PyOSError> { |
| 3363 | vm.new_os_subtype_error(timeout(vm), None, msg) |
| 3364 | } |
| 3365 | |
| 3366 | fn get_ipv6_addr_str(ipv6: Ipv6Addr) -> String { |
| 3367 | match ipv6.to_ipv4() { |
no test coverage detected