(cls: PyTypeRef, fd: OwnedFd, vm: &VirtualMachine)
| 635 | |
| 636 | #[pyclassmethod] |
| 637 | fn fromfd(cls: PyTypeRef, fd: OwnedFd, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 638 | let epoll_fd = Some(fd).into(); |
| 639 | Self { epoll_fd }.into_ref_with_type(vm, cls) |
| 640 | } |
| 641 | |
| 642 | #[pymethod] |
| 643 | fn register( |