(zelf: &Py<Self>, vm: &VirtualMachine)
| 848 | impl Representable for PyByteArray { |
| 849 | #[inline] |
| 850 | fn repr_str(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<String> { |
| 851 | let class = zelf.class(); |
| 852 | let class_name = class.name(); |
| 853 | zelf.inner().repr_with_name(&class_name, vm) |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | #[pyclass(module = false, name = "bytearray_iterator")] |
nothing calls this directly
no test coverage detected