(&self)
| 54 | /// Direct access to args field (_Py_union_args) |
| 55 | #[inline] |
| 56 | pub fn args(&self) -> &Py<PyTuple> { |
| 57 | &self.args |
| 58 | } |
| 59 | |
| 60 | fn repr(&self, vm: &VirtualMachine) -> PyResult<String> { |
| 61 | fn repr_item(obj: PyObjectRef, vm: &VirtualMachine) -> PyResult<String> { |
no outgoing calls
no test coverage detected