| Commit message (Expand) | Author | Age | Files | Lines |
* | A new table to help string->integer conversion was added yesterday to | Tim Peters | 2006-05-25 | 3 | -44/+16 |
|
|
* | 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 | 3 | -15/+54 |
|
|
* | Fix incorrect documentation for the Py_IS_FINITE(X) macro. | Kristján Valur Jónsson | 2006-05-25 | 1 | -3/+3 |
|
|
* | Fix another typo | Andrew M. Kuchling | 2006-05-25 | 1 | -1/+1 |
|
|
* | Added tests for implementation error we came up with in the need for speed sp... | Andrew Dalke | 2006-05-25 | 1 | -0/+19 |
|
|
* | Fix comment typos | Andrew M. Kuchling | 2006-05-25 | 1 | -1/+1 |
|
|
* | 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 | 3 | -5/+12 |
|
|
* | 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 |
|
|
* | Add entry; and fix a typo | Andrew M. Kuchling | 2006-05-25 | 1 | -1/+7 |
|
|
* | Update graminit.c for the fix for #1488915, Multiple dots in relative import | Thomas Wouters | 2006-05-25 | 2 | -21/+25 |
|
|
* | Fix #1488915, Multiple dots in relative import statement raise SyntaxError. | Thomas Wouters | 2006-05-25 | 1 | -1/+1 |
|
|
* | Replace tab inside comment with space. | Walter Dörwald | 2006-05-25 | 1 | -1/+1 |
|
|
* | fix broken links in PDF | Fred Drake | 2006-05-25 | 2 | -3/+22 |
|
|
* | Minor edits; add an item | Andrew M. Kuchling | 2006-05-25 | 1 | -2/+9 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 3 | -44/+237 |
|
|
* | Disable the damn empty-string replace test -- it can't | Tim Peters | 2006-05-24 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-24 | 1 | -2/+2 |
|
|
* | We can't leave the checked-in tests broken. | Tim Peters | 2006-05-24 | 1 | -5/+10 |
|
|
* | Added a slew of test for string replace, based various corner cases from | Andrew Dalke | 2006-05-24 | 1 | -0/+157 |
|
|
* | needforspeed: refactored the replace code slightly; special-case | Fredrik Lundh | 2006-05-24 | 1 | -84/+86 |
|
|
* | refactor unpack, add unpack_from | Bob Ippolito | 2006-05-24 | 3 | -62/+161 |
|
|
* | 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 |
|
|
* | Add missing svn:eol-style property to text files. | Tim Peters | 2006-05-23 | 1 | -1013/+1013 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-23 | 4 | -1020/+1019 |
|
|
* | test_struct grew weird behavior under regrtest.py -R, | Tim Peters | 2006-05-23 | 1 | -0/+2 |
|
|
* | return 0 on misses, not -1. | Fredrik Lundh | 2006-05-23 | 1 | -1/+1 |
|
|
* | Get the Windows build working again (recover from | Tim Peters | 2006-05-23 | 2 | -5/+5 |
|
|
* | Add item | Andrew M. Kuchling | 2006-05-23 | 1 | -0/+5 |
|
|
* | fix typo in _struct | Bob Ippolito | 2006-05-23 | 1 | -2/+2 |
|
|
* | forward declaration for PyStructType | Bob Ippolito | 2006-05-23 | 1 | -0/+1 |
|
|
* | Add two items | Andrew M. Kuchling | 2006-05-23 | 1 | -4/+8 |
|
|
* | fix linking issue, warnings, in struct | Bob Ippolito | 2006-05-23 | 1 | -4/+0 |
|
|
* | patch #1493701: performance enhancements for struct module | Bob Ippolito | 2006-05-23 | 3 | -0/+1431 |
|
|
* | patch #1493701: performance enhancements for struct module | Bob Ippolito | 2006-05-23 | 4 | -1295/+4 |
|
|
* | revert #1493701 | Bob Ippolito | 2006-05-23 | 5 | -416/+276 |
|
|
* | Remove duplicate item | Andrew M. Kuchling | 2006-05-23 | 1 | -3/+0 |
|
|
* | Patch #1493701: performance enhancements for struct module. | Bob Ippolito | 2006-05-23 | 5 | -276/+416 |
|
|
* | Bug #1334662 / patch #1335972: int(string, base) wrong answers. | Tim Peters | 2006-05-23 | 4 | -88/+262 |
|
|
* | needforspeed: use append+reverse for rsplit, use "bloom filters" to | Fredrik Lundh | 2006-05-23 | 1 | -43/+101 |
|
|
* | Update Misc/NEWS for gzip patch #1281707 | Bob Ippolito | 2006-05-23 | 1 | -2/+2 |
|
|
* | Update Misc/NEWS for gzip patch #1281707 | Bob Ippolito | 2006-05-23 | 1 | -0/+2 |
|
|
* | fix broken merge | Richard Jones | 2006-05-23 | 1 | -7/+2 |
|
|
* | Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. | Richard Jones | 2006-05-23 | 4 | -55/+54 |
|
|
* | An improved script for building the binary distribution on MacOSX. | Ronald Oussoren | 2006-05-23 | 9 | -0/+1246 |
|
|
* | Use 'speed' instead of 'performance', because I agree with the argument | Andrew M. Kuchling | 2006-05-23 | 1 | -2/+2 |
|
|