Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #7622: Improve the split(), rsplit(), splitlines() and replace() | Antoine Pitrou | 2010-01-13 | 1 | -39/+44 |
| | | | | | methods of bytes, bytearray and unicode objects by using a common implementation based on stringlib's fast search. Patch by Florent Xicluna. | ||||
* | Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, | Antoine Pitrou | 2010-01-02 | 1 | -9/+3 |
| | | | | `rindex`, `rsplit` and `rpartition` methods. Patch by Florent Xicluna. | ||||
* | Fix endcase for str.rpartition() | Raymond Hettinger | 2006-09-04 | 1 | -4/+4 |
| | |||||
* | needforspeed: replace improvements, changed to Py_LOCAL_INLINE | Fredrik Lundh | 2006-05-27 | 1 | -2/+2 |
| | | | | where appropriate | ||||
* | Fix Coverity warnings. | Neal Norwitz | 2006-05-27 | 1 | -6/+1 |
| | | | | | - Check the correct variable (str_obj, not str) for NULL - sep_len was already verified it wasn't 0 | ||||
* | needforspeed: stringlib refactoring, continued. added count and | Fredrik Lundh | 2006-05-26 | 1 | -4/+12 |
| | | | | find helpers; updated unicodeobject to use stringlib_count | ||||
* | needforspeed: added rpartition implementation | Fredrik Lundh | 2006-05-26 | 1 | -1/+61 |
| | |||||
* | removed unnecessary include | Fredrik Lundh | 2006-05-26 | 1 | -2/+0 |
| | |||||
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 1 | -0/+50 |