(&self, vm: &VirtualMachine)
| 2200 | |
| 2201 | #[pymethod] |
| 2202 | fn getpeername(&self, vm: &VirtualMachine) -> std::io::Result<PyObjectRef> { |
| 2203 | let addr = self.sock()?.peer_addr()?; |
| 2204 | |
| 2205 | Ok(get_addr_tuple(&addr, vm)) |
| 2206 | } |
| 2207 | |
| 2208 | #[pymethod] |
| 2209 | fn gettimeout(&self) -> Option<f64> { |
nothing calls this directly
no test coverage detected