[New-bugs-announce] [issue17343] Add a version of str.split which returns an iterator

Alex Gaynor report at bugs.python.org
Mon Mar 4 02:04:26 CET 2013


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 <report at bugs.python.org>
<http://bugs.python.org/issue17343>
_______________________________________


More information about the New-bugs-announce mailing list