| Commit message (Expand) | Author | Age | Files | Lines |
* | Added limits to the replace code so it does not count all of the matching | Andrew Dalke | 2006-05-26 | 1 | -22/+19 |
|
|
* | Simplify calling. | Georg Brandl | 2006-05-26 | 1 | -8/+2 |
|
|
* | Comment typo | Andrew M. Kuchling | 2006-05-26 | 1 | -1/+1 |
|
|
* | needforspeed: stringlib refactoring: use stringlib/find for string find | Fredrik Lundh | 2006-05-26 | 3 | -30/+25 |
|
|
* | needforspeed: use a macro to fix slice indexes | Fredrik Lundh | 2006-05-26 | 1 | -52/+18 |
|
|
* | needforspeed: stringlib refactoring: use stringlib/find for unicode | Fredrik Lundh | 2006-05-26 | 1 | -14/+36 |
|
|
* | needforspeed: stringlib refactoring, continued. added count and | Fredrik Lundh | 2006-05-26 | 5 | -53/+132 |
|
|
* | substring split now uses /F's fast string matching algorithm. | Andrew Dalke | 2006-05-26 | 1 | -40/+57 |
|
|
* | needspeed: rpartition documentation, tests, and a bug fixes. | Fredrik Lundh | 2006-05-26 | 1 | -2/+2 |
|
|
* | needforspeed: added rpartition implementation | Fredrik Lundh | 2006-05-26 | 4 | -1/+154 |
|
|
* | removed unnecessary include | Fredrik Lundh | 2006-05-26 | 1 | -2/+0 |
|
|
* | needforspeed: remove remaining USE_FAST macros; if fastsearch was | Fredrik Lundh | 2006-05-26 | 1 | -67/+2 |
|
|
* | needforspeed: cleanup | Fredrik Lundh | 2006-05-26 | 1 | -4/+8 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 3 | -77/+71 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 4 | -179/+111 |
|
|
* | needforspeed: use Py_LOCAL on a few more locals in stringobject.c | Fredrik Lundh | 2006-05-26 | 1 | -26/+27 |
|
|
* | Eeked out another 3% or so performance in split whitespace by cleaning up the... | Andrew Dalke | 2006-05-26 | 1 | -35/+38 |
|
|
* | Changes to string.split/rsplit on whitespace to preallocate space in the | Andrew Dalke | 2006-05-26 | 1 | -56/+75 |
|
|
* | use Py_LOCAL also for string and unicode objects | Fredrik Lundh | 2006-05-26 | 2 | -35/+11 |
|
|
* | needforspeed: use Py_ssize_t for the fastsearch counter and skip | Fredrik Lundh | 2006-05-26 | 2 | -2/+2 |
|
|
* | needforspeed: use METH_O for argument handling, which made partition some | Fredrik Lundh | 2006-05-26 | 2 | -13/+4 |
|
|
* | needforspeed: partition implementation, part two. | Fredrik Lundh | 2006-05-26 | 2 | -78/+111 |
|
|
* | needforspeed: partition for 8-bit strings. for some simple tests, | Fredrik Lundh | 2006-05-25 | 1 | -5/+66 |
|
|
* | Patch #1494387: SVN longobject.c compiler warnings | Tim Peters | 2006-05-25 | 1 | -1/+1 |
|
|
* | squelch gcc4 darwin/x86 compiler warnings | Bob Ippolito | 2006-05-25 | 1 | -1/+1 |
|
|
* | needforspeed: use insert+reverse instead of append | Fredrik Lundh | 2006-05-25 | 1 | -16/+8 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 3 | -11/+8 |
|
|
* | * eliminate warning by reverting tmp_s type to 'const char*' | Jack Diederich | 2006-05-25 | 1 | -1/+1 |
|
|
* | needforspeed: use fastsearch also for find/index and contains. the | Fredrik Lundh | 2006-05-25 | 1 | -1/+25 |
|
|
* | Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm | Bob Ippolito | 2006-05-25 | 1 | -10/+50 |
|
|
* | Added overflow test for adding two (very) large strings where the | Andrew Dalke | 2006-05-25 | 1 | -2/+7 |
|
|
* | Comment typo | Andrew M. Kuchling | 2006-05-25 | 1 | -1/+1 |
|
|
* | Code had returned an ssize_t, upcast to long, then converted with PyInt_FromL... | Andrew Dalke | 2006-05-25 | 1 | -1/+1 |
|
|
* | needforspeed: use "fastsearch" for count. this results in a 3x speedup | Fredrik Lundh | 2006-05-25 | 1 | -1/+122 |
|
|
* | Fixed problem identified by Georg. The special-case in-place code for replace | Andrew Dalke | 2006-05-25 | 1 | -2/+5 |
|
|
* | A new table to help string->integer conversion was added yesterday to | Tim Peters | 2006-05-25 | 1 | -14/+13 |
|
|
* | needforspeed: new replace implementation by Andrew Dalke. replace is | Fredrik Lundh | 2006-05-25 | 1 | -182/+605 |
|
|
* | needforspeed: check for overflow in replace (from Andrew Dalke) | Fredrik Lundh | 2006-05-25 | 2 | -6/+46 |
|
|
* | needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C | Fredrik Lundh | 2006-05-25 | 1 | -0/+9 |
|
|
* | Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for thi... | Kristján Valur Jónsson | 2006-05-25 | 1 | -5/+2 |
|
|
* | needforspeed: make new upper/lower work properly for single-character | Fredrik Lundh | 2006-05-25 | 1 | -4/+8 |
|
|
* | needforspeed: speed up upper and lower for 8-bit string objects. | Fredrik Lundh | 2006-05-25 | 1 | -22/+20 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 1 | -44/+156 |
|
|
* | needforspeed: refactored the replace code slightly; special-case | Fredrik Lundh | 2006-05-24 | 1 | -84/+86 |
|
|
* | needforspeedindeed: use fastsearch also for __contains__ | Fredrik Lundh | 2006-05-24 | 1 | -4/+19 |
|
|
* | needforspeed: use "fastsearch" for count and findstring helpers. this | Fredrik Lundh | 2006-05-24 | 1 | -1/+109 |
|
|
* | use Py_ssize_t for string indexes (thanks, neal!) | Fredrik Lundh | 2006-05-24 | 1 | -2/+2 |
|
|
* | return 0 on misses, not -1. | Fredrik Lundh | 2006-05-23 | 1 | -1/+1 |
|
|
* | needforspeed: use append+reverse for rsplit, use "bloom filters" to | Fredrik Lundh | 2006-05-23 | 1 | -43/+101 |
|
|
* | fix broken merge | Richard Jones | 2006-05-23 | 1 | -7/+2 |
|
|