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 rhettinger
Recipients rhettinger, tshepang
Date 2011-02-09.20:08:28
SpamBayes Score 2.0830682e-09
Marked as misclassified No
Message-id <1297282110.12.0.0449089115539.issue11162@psf.upfronthosting.co.za>
In-reply-to
Content
> Does this suggested 'improvement' make sense?

Sorry, it doesn't make sense for a number of reasons.

* First the str.split() is already too complex.  It took years to get the docs for it to be correct and informative (two different algorithms, etc).

* Second, it would overly complicate the implementation and preclude various kinds of string search optimizations (i.e. that is why fgrep, grep, and egrep are still separate).

* Third, at some point, when you need a regex, you just need to use a regex.  It would be a mistake to reinvent regex capabilities in string objects.
History
Date User Action Args
2011-02-09 20:08:30rhettingersetrecipients: + rhettinger, tshepang
2011-02-09 20:08:30rhettingersetmessageid: <1297282110.12.0.0449089115539.issue11162@psf.upfronthosting.co.za>
2011-02-09 20:08:28rhettingerlinkissue11162 messages
2011-02-09 20:08:28rhettingercreate