(&self, context: Option<PyRef<Self>>)
| 648 | |
| 649 | #[pygetset(setter)] |
| 650 | pub fn set___context__(&self, context: Option<PyRef<Self>>) { |
| 651 | *self.context.write() = context; |
| 652 | } |
| 653 | |
| 654 | #[pygetset] |
| 655 | pub(super) fn __suppress_context__(&self) -> bool { |
no test coverage detected