(zelf: PyRef<Self>, args: Self::Args, vm: &VirtualMachine)
| 1400 | type Args = SocketInitArgs; |
| 1401 | |
| 1402 | fn init(zelf: PyRef<Self>, args: Self::Args, vm: &VirtualMachine) -> PyResult<()> { |
| 1403 | Self::_init(zelf, args, vm).map_err(|e| e.into_pyexception(vm)) |
| 1404 | } |
| 1405 | } |
| 1406 | |
| 1407 | impl Representable for PySocket { |
nothing calls this directly
no test coverage detected