| Commit message (Expand) | Author | Age | Files | Lines |
* | needforspeed: stringlib refactoring: use stringlib/find for string find | Fredrik Lundh | 2006-05-26 | 1 | -19/+6 |
|
|
* | needforspeed: stringlib refactoring, continued. added count and | Fredrik Lundh | 2006-05-26 | 1 | -2/+2 |
|
|
* | substring split now uses /F's fast string matching algorithm. | Andrew Dalke | 2006-05-26 | 1 | -40/+57 |
|
|
* | needforspeed: added rpartition implementation | Fredrik Lundh | 2006-05-26 | 1 | -0/+36 |
|
|
* | 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 | 1 | -34/+5 |
|
|
* | needforspeed: stringlib refactoring (in progress) | Fredrik Lundh | 2006-05-26 | 1 | -92/+7 |
|
|
* | 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 | 1 | -13/+1 |
|
|
* | needforspeed: use Py_ssize_t for the fastsearch counter and skip | Fredrik Lundh | 2006-05-26 | 1 | -1/+1 |
|
|
* | needforspeed: use METH_O for argument handling, which made partition some | Fredrik Lundh | 2006-05-26 | 1 | -6/+2 |
|
|
* | needforspeed: partition implementation, part two. | Fredrik Lundh | 2006-05-26 | 1 | -15/+15 |
|
|
* | needforspeed: partition for 8-bit strings. for some simple tests, | Fredrik Lundh | 2006-05-25 | 1 | -5/+66 |
|
|
* | 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 |
|
|
* | * 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 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | 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 | 1 | -2/+21 |
|
|
* | needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C | Fredrik Lundh | 2006-05-25 | 1 | -0/+9 |
|
|
* | 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 |
|
|
* | docstring tweaks: count counts non-overlapping substrings, not | Fredrik Lundh | 2006-05-22 | 1 | -3/+3 |
|
|
* | Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV | Tim Peters | 2006-05-13 | 1 | -13/+22 |
|
|
* | Revert 43315: Printing of %zd must be signed. | Martin v. Löwis | 2006-05-13 | 1 | -2/+2 |
|
|
* | Py_ssize_t issue; repr()'ing a very large string would result in a teensy | Thomas Wouters | 2006-04-21 | 1 | -1/+1 |
|
|
* | Make s.replace() work with explicit counts exceeding 2Gb. | Thomas Wouters | 2006-04-19 | 1 | -2/+2 |
|
|
* | Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and | Thomas Wouters | 2006-04-19 | 1 | -8/+8 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 1 | -1/+1 |
|
|
* | No need to cast a Py_ssize_t, use %z in PyErr_Format | Neal Norwitz | 2006-04-17 | 1 | -2/+2 |
|
|
* | Make Py_BuildValue, PyObject_CallFunction and | Martin v. Löwis | 2006-04-14 | 1 | -0/+1 |
|
|
* | Change more occurrences of maxsplit to Py_ssize_t. | Martin v. Löwis | 2006-04-13 | 1 | -4/+4 |
|
|
* | Change maxsplit types to Py_ssize_t. | Martin v. Löwis | 2006-04-13 | 1 | -4/+4 |
|
|
* | Replace most INT_MAX with PY_SSIZE_T_MAX. | Martin v. Löwis | 2006-04-13 | 1 | -11/+11 |
|
|
* | More low-hanging fruit. Still need to re-arrange some code (or find a better | Anthony Baxter | 2006-04-11 | 1 | -35/+35 |
|
|
* | Remove dead code (reported by HP compiler). | Neal Norwitz | 2006-04-06 | 1 | -8/+5 |
|
|
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -3/+3 |
|
|
* | Get rid of warnings on some platforms by using %u for a size_t. | Neal Norwitz | 2006-03-25 | 1 | -1/+1 |
|
|
* | Use macro versions instead of function versions when we already know the type. | Neal Norwitz | 2006-03-20 | 1 | -4/+5 |
|
|
* | Introduced symbol PY_FORMAT_SIZE_T. See the new comments | Tim Peters | 2006-03-17 | 1 | -31/+22 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -3/+6 |
|
|
* | SF #1444030: Fix several potential defects found by Coverity. | Hye-Shik Chang | 2006-03-07 | 1 | -1/+1 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 1 | -4/+12 |
|
|