(instance: PyObjectRef, vm: &VirtualMachine)
| 565 | |
| 566 | #[pymethod(name = "_checkReadable")] |
| 567 | fn check_readable(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 568 | check_readable(&instance, vm) |
| 569 | } |
| 570 | |
| 571 | #[pymethod(name = "_checkWritable")] |
| 572 | fn check_writable(instance: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected