| Commit message (Expand) | Author | Age | Files | Lines |
* | Backport from Py3k branch: fix refleak in PyString_Format. | Georg Brandl | 2007-02-26 | 1 | -1/+5 |
|
|
* | Forward-port of r52136: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -6/+19 |
|
|
* | Fix str.rpartition(sep) when sep is not found in str. | Neal Norwitz | 2006-09-05 | 1 | -2/+2 |
|
|
* | Fix refleak introduced in rev. 51248. | Georg Brandl | 2006-08-14 | 1 | -1/+3 |
|
|
* | Fix segfault when doing string formatting on subclasses of long if | Neal Norwitz | 2006-08-13 | 1 | -1/+4 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -5/+2 |
|
|
* | Whitespace normalization | Neal Norwitz | 2006-07-30 | 1 | -35/+32 |
|
|
* | Bug #1515471: string.replace() accepts character buffers again. | Neal Norwitz | 2006-07-30 | 1 | -71/+51 |
|
|
* | Update doc to make it agree with code. | Neal Norwitz | 2006-06-11 | 1 | -10/+4 |
|
|
* | Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. | Georg Brandl | 2006-06-10 | 1 | -1/+1 |
|
|
* | RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first... | Georg Brandl | 2006-06-09 | 1 | -60/+90 |
|
|
* | Remove ; at end of macro. There was a compiler recently that warned | Neal Norwitz | 2006-06-01 | 1 | -1/+1 |
|
|
* | needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), | Fredrik Lundh | 2006-05-28 | 1 | -37/+37 |
|
|
* | needforspeed: stringlib refactoring: use find_slice for stringobject | Fredrik Lundh | 2006-05-27 | 1 | -12/+15 |
|
|
* | needforspeed: replace improvements, changed to Py_LOCAL_INLINE | Fredrik Lundh | 2006-05-27 | 1 | -16/+16 |
|
|
* | cleanup - removed trailing whitespace | Andrew Dalke | 2006-05-27 | 1 | -1/+1 |
|
|
* | needforspeed: more stringlib refactoring | Fredrik Lundh | 2006-05-27 | 1 | -55/+39 |
|
|
* | Added description of why splitlines doesn't use the prealloc strategy | Andrew Dalke | 2006-05-26 | 1 | -0/+8 |
|
|
* | Added limits to the replace code so it does not count all of the matching | Andrew Dalke | 2006-05-26 | 1 | -22/+19 |
|
|
* | 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 |
|
|