(&self, vm: &VirtualMachine)
| 495 | |
| 496 | #[pymethod] |
| 497 | fn _make_cancelled_error(&self, vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 498 | self.make_cancelled_error_impl(vm) |
| 499 | } |
| 500 | |
| 501 | fn make_cancelled_error_impl(&self, vm: &VirtualMachine) -> PyBaseExceptionRef { |
| 502 | // If a saved CancelledError exists, take it (clearing the stored reference) |
nothing calls this directly
no test coverage detected