(&self)
| 593 | impl PyBaseException { |
| 594 | #[pygetset] |
| 595 | pub fn args(&self) -> PyTupleRef { |
| 596 | self.args.read().clone() |
| 597 | } |
| 598 | |
| 599 | #[pygetset(setter)] |
| 600 | fn set_args(&self, args: ArgIterable, vm: &VirtualMachine) -> PyResult<()> { |
no test coverage detected