(zelf: &Py<Self>, vm: &VirtualMachine)
| 737 | |
| 738 | #[pymethod] |
| 739 | fn clear(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<()> { |
| 740 | zelf.try_resizable(vm)?.clear() |
| 741 | } |
| 742 | |
| 743 | #[pymethod] |
| 744 | fn buffer_info(&self) -> (usize, usize) { |
nothing calls this directly
no test coverage detected