New submission from Alex Gaynor:

str.split returns a list, which is inefficient when you just want to process 
items one be one. You could emulate this with str.find and tracking indexes 
manually, but this should really be a builtin behavior.

----------
messages: 183411
nosy: alex
priority: normal
severity: normal
status: open
title: Add a version of str.split which returns an iterator
type: enhancement

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17343>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to