summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* needforspeed: added Py_LOCAL macro, based on the LOCAL macro usedFredrik Lundh2006-05-262-53/+70
* Add "partition" to UserString.Georg Brandl2006-05-261-0/+1
* Fix buglet in postinstall script, it would generate an invalid .cshrc file.Ronald Oussoren2006-05-261-1/+1
* Added split whitespace checks for characters other than space.Andrew Dalke2006-05-261-0/+1
* use Py_ssize_t in places that may need itJack Diederich2006-05-261-25/+25
* Added a few more test cases for whitespace split. These strings have leading...Andrew Dalke2006-05-261-0/+7
* 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
* Clarify docs for str.partition().Georg Brandl2006-05-261-4/+5
* needforspeed: partition implementation, part two.Fredrik Lundh2006-05-265-78/+143
* Without this patch OSX users couldn't add new help sources because the codeRonald Oussoren2006-05-261-0/+1
* Add Soc studentAndrew M. Kuchling2006-05-261-4/+5
* 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
* Repair idiot typo, and complete the job of trying toTim Peters2006-05-251-4/+4
* Move over to use of METH_O and METH_NOARGS.Brett Cannon2006-05-251-12/+24
* Add missing files from x86 darwin ctypes patchBob Ippolito2006-05-253-0/+830
* Whitespace normalization.Tim Peters2006-05-251-2/+2
* Some Win64 pre-release in 2000 didn't supportTim Peters2006-05-252-4/+7
* Change test_values so that it compares the lowercasing of group names since g...Brett Cannon2006-05-251-1/+4
* Fix minor typo in prep_cif.cRonald Oussoren2006-05-251-1/+1
* Add a x-ref to newer calling APIs.Georg Brandl2006-05-251-0/+4
* fix test_float regression and 64-bit size mismatch issueBob Ippolito2006-05-251-2/+16
* squelch gcc4 darwin/x86 compiler warningsBob Ippolito2006-05-251-1/+1
* Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() .Brett Cannon2006-05-251-2/+2
* Someone seems to just have copy-pasted the docs ofGeorg Brandl2006-05-251-4/+4
* enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --...Bob Ippolito2006-05-259-6/+120
* Use faster struct pack/unpack functions for the endian table that matches the...Bob Ippolito2006-05-251-3/+27
* Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incor...Bob Ippolito2006-05-251-10/+13
* needforspeed: use insert+reverse instead of appendFredrik Lundh2006-05-251-16/+8
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-258-20/+17
* fix a struct regression where long would be returned for short unsigned integersBob Ippolito2006-05-251-0/+6
* Fix Cygwin compiler issueBob Ippolito2006-05-251-1/+5
* * eliminate warning by reverting tmp_s type to 'const char*'Jack Diederich2006-05-251-1/+1
* Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifde...Bob Ippolito2006-05-251-6/+88
* needforspeed: use fastsearch also for find/index and contains. theFredrik Lundh2006-05-251-1/+25
* Guard the _active.remove() call to avoid errors when there is no _active list.Georg Brandl2006-05-251-2/+3
* 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-253-44/+16
* needforspeed: new replace implementation by Andrew Dalke. replace isFredrik Lundh2006-05-251-182/+605
* needforspeed: check for overflow in replace (from Andrew Dalke)Fredrik Lundh2006-05-253-15/+54
* Fix incorrect documentation for the Py_IS_FINITE(X) macro.Kristján Valur Jónsson2006-05-251-3/+3
* Fix another typoAndrew M. Kuchling2006-05-251-1/+1
* Added tests for implementation error we came up with in the need for speed sp...Andrew Dalke2006-05-251-0/+19
* Fix comment typosAndrew M. Kuchling2006-05-251-1/+1