summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* move semicolonsRichard Jones2006-05-271-53/+51
* doc string additions and tweaksRichard Jones2006-05-271-8/+21
* needforspeed: stringlib refactoring: use find_slice for stringobjectFredrik Lundh2006-05-271-12/+15
* needforspeed: stringlib refactoring: changed find_obj to find_slice,Fredrik Lundh2006-05-272-36/+69
* needforspeed: replace improvements, changed to Py_LOCAL_INLINEFredrik Lundh2006-05-276-41/+55
* Remove spurious semicolons after macro invocations.Georg Brandl2006-05-271-42/+42
* cleanup - removed trailing whitespaceAndrew Dalke2006-05-271-1/+1
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-0/+2130
* Revert bogus change committed in 46432 to this file.Martin v. Löwis2006-05-271-1/+0
* fixed typoAndrew Dalke2006-05-271-1/+1
* needforspeed: more stringlib refactoringFredrik Lundh2006-05-274-147/+161
* Patch 1494554: Update numeric properties to Unicode 4.1.Martin v. Löwis2006-05-272-6/+328
* Fix Coverity warnings.Neal Norwitz2006-05-272-7/+2
* Added description of why splitlines doesn't use the prealloc strategyAndrew Dalke2006-05-261-0/+8
* Added limits to the replace code so it does not count all of the matchingAndrew Dalke2006-05-261-22/+19
* Simplify calling.Georg Brandl2006-05-261-8/+2
* Comment typoAndrew M. Kuchling2006-05-261-1/+1
* needforspeed: stringlib refactoring: use stringlib/find for string findFredrik Lundh2006-05-263-30/+25
* needforspeed: use a macro to fix slice indexesFredrik Lundh2006-05-261-52/+18
* needforspeed: stringlib refactoring: use stringlib/find for unicodeFredrik Lundh2006-05-261-14/+36
* needforspeed: stringlib refactoring, continued. added count andFredrik Lundh2006-05-265-53/+132
* substring split now uses /F's fast string matching algorithm.Andrew Dalke2006-05-261-40/+57
* needspeed: rpartition documentation, tests, and a bug fixes.Fredrik Lundh2006-05-261-2/+2
* needforspeed: added rpartition implementationFredrik Lundh2006-05-264-1/+154
* removed unnecessary includeFredrik Lundh2006-05-261-2/+0
* needforspeed: remove remaining USE_FAST macros; if fastsearch wasFredrik Lundh2006-05-261-67/+2
* needforspeed: cleanupFredrik Lundh2006-05-261-4/+8
* needforspeed: stringlib refactoring (in progress)Fredrik Lundh2006-05-263-77/+71
* needforspeed: stringlib refactoring (in progress)Fredrik Lundh2006-05-264-179/+111
* needforspeed: use Py_LOCAL on a few more locals in stringobject.cFredrik Lundh2006-05-261-26/+27
* Eeked out another 3% or so performance in split whitespace by cleaning up the...Andrew Dalke2006-05-261-35/+38
* Changes to string.split/rsplit on whitespace to preallocate space in theAndrew Dalke2006-05-261-56/+75
* use Py_LOCAL also for string and unicode objectsFredrik Lundh2006-05-262-35/+11
* needforspeed: use Py_ssize_t for the fastsearch counter and skipFredrik Lundh2006-05-262-2/+2
* needforspeed: use METH_O for argument handling, which made partition someFredrik Lundh2006-05-262-13/+4
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-262-78/+111
* needforspeed: partition for 8-bit strings. for some simple tests,Fredrik Lundh2006-05-251-5/+66
* Patch #1494387: SVN longobject.c compiler warningsTim Peters2006-05-251-1/+1
* squelch gcc4 darwin/x86 compiler warningsBob Ippolito2006-05-251-1/+1
* needforspeed: use insert+reverse instead of appendFredrik Lundh2006-05-251-16/+8
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-253-11/+8
* * eliminate warning by reverting tmp_s type to 'const char*'Jack Diederich2006-05-251-1/+1
* needforspeed: use fastsearch also for find/index and contains. theFredrik Lundh2006-05-251-1/+25
* Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithmBob Ippolito2006-05-251-10/+50
* Added overflow test for adding two (very) large strings where theAndrew Dalke2006-05-251-2/+7
* Comment typoAndrew M. Kuchling2006-05-251-1/+1
* Code had returned an ssize_t, upcast to long, then converted with PyInt_FromL...Andrew Dalke2006-05-251-1/+1
* needforspeed: use "fastsearch" for count. this results in a 3x speedupFredrik Lundh2006-05-251-1/+122
* Fixed problem identified by Georg. The special-case in-place code for replaceAndrew Dalke2006-05-251-2/+5
* A new table to help string->integer conversion was added yesterday toTim Peters2006-05-251-14/+13