(ctx: &Context)
| 320 | |
| 321 | impl PyPayload for PyStrIterator { |
| 322 | fn class(ctx: &Context) -> &'static Py<PyType> { |
| 323 | ctx.types.str_iterator_type |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | #[pyclass(flags(DISALLOW_INSTANTIATION), with(IterNext, Iterable))] |
no outgoing calls
no test coverage detected