(zelf: &Py<Self>, vm: &VirtualMachine)
| 728 | impl Representable for PyBytes { |
| 729 | #[inline] |
| 730 | fn repr_str(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<String> { |
| 731 | zelf.inner.repr_bytes(vm) |
| 732 | } |
| 733 | } |
| 734 | |
| 735 | #[pyclass(module = false, name = "bytes_iterator")] |
nothing calls this directly
no test coverage detected