MCPcopy Index your code
hub / github.com/RustPython/RustPython / set__cancel_message

Method set__cancel_message

crates/stdlib/src/_asyncio.rs:696–701  ·  view source on GitHub ↗
(&self, value: PySetterValue)

Source from the content-addressed store, hash-verified

694
695 #[pygetset(setter)]
696 fn set__cancel_message(&self, value: PySetterValue) {
697 match value {
698 PySetterValue::Assign(v) => *self.fut_cancel_msg.write() = Some(v),
699 PySetterValue::Delete => *self.fut_cancel_msg.write() = None,
700 }
701 }
702
703 #[pygetset]
704 fn _asyncio_awaited_by(&self, vm: &VirtualMachine) -> PyResult<PyObjectRef> {

Callers

nothing calls this directly

Calls 2

SomeClass · 0.50
writeMethod · 0.45

Tested by

no test coverage detected