(&self)
| 212 | |
| 213 | #[pymethod] |
| 214 | fn __sizeof__(&self) -> usize { |
| 215 | size_of::<Self>() + self.borrow_buf().len() * size_of::<u8>() |
| 216 | } |
| 217 | |
| 218 | #[pyslot] |
| 219 | fn slot_str(zelf: &PyObject, vm: &VirtualMachine) -> PyResult<PyStrRef> { |
nothing calls this directly
no test coverage detected