Files
RustPython/vm
Alvin Lindstam 9203eda6c6 Skip string char traversal on each next in python str iterator
Previosly, each call to `__next__` on a str iterator did a `chars().count()`
to find the length of the full string and traversed the chars of the string
until the expected char position from the start.

This approach ignores the char position and only cares about the byte position,
allowing it to only act on the specific part of the string binary it's interested
in.
2020-01-19 15:49:14 +01:00
..
2019-11-22 22:49:11 -06:00
2018-07-07 17:14:45 +02:00
2020-01-14 19:07:05 -06:00