(&mut self, py: Python, envelope: Py<PyEnvelope>)
| 28 | #[pymethods] |
| 29 | impl PySender { |
| 30 | fn send(&mut self, py: Python, envelope: Py<PyEnvelope>) { |
| 31 | let envelope = envelope.borrow_mut(py).imp.take().expect("use after move"); |
| 32 | with_context(py, || wait(self.imp.send(envelope)).ok()); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | #[pymethods] |
no test coverage detected