(&self, address: PyObjectRef, vm: &VirtualMachine)
| 1612 | |
| 1613 | #[pymethod] |
| 1614 | fn connect_ex(&self, address: PyObjectRef, vm: &VirtualMachine) -> PyResult<i32> { |
| 1615 | match self.connect_inner(address, "connect_ex", vm) { |
| 1616 | Ok(()) => Ok(0), |
| 1617 | Err(err) => err.errno(), |
| 1618 | } |
| 1619 | } |
| 1620 | |
| 1621 | #[pymethod] |
| 1622 | fn bind(&self, address: PyObjectRef, vm: &VirtualMachine) -> Result<(), IoOrPyException> { |
nothing calls this directly
no test coverage detected