This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author alex
Recipients alex
Date 2013-03-04.01:04:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362359066.58.0.311917237277.issue17343@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2013-03-04 01:04:26alexsetrecipients: + alex
2013-03-04 01:04:26alexsetmessageid: <1362359066.58.0.311917237277.issue17343@psf.upfronthosting.co.za>
2013-03-04 01:04:26alexlinkissue17343 messages
2013-03-04 01:04:26alexcreate