Vedran Čačić

Results 3 comments of Vedran Čačić

I think type should never lie, even if it is a white lie. Either we should remove `str.__iter__` (or make it yield something else than strs), or we should allow...

I think we're trying to expand type hints beyond their original purpose, and it shows. If I say a_string.rstrip('abc'), the function is going to work perfectly. It will, according to...

If we're going to go EIBTI route, why not be explicit where it counts? for char in a_string.chars(): It would also help in distinguishing iterating through combined characters (graphemes), and...