| Commit message (Expand) | Author | Age | Files | Lines |
* | needforspeed: use insert+reverse instead of append | Fredrik Lundh | 2006-05-25 | 1 | -16/+8 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 3 | -11/+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 |
|
|
* | Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm | Bob Ippolito | 2006-05-25 | 1 | -10/+50 |
|
|
* | 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 |
|
|
* | Code had returned an ssize_t, upcast to long, then converted with PyInt_FromL... | Andrew Dalke | 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 |
|
|
* | A new table to help string->integer conversion was added yesterday to | Tim Peters | 2006-05-25 | 1 | -14/+13 |
|
|
* | 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 | 2 | -6/+46 |
|
|
* | 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 | 1 | -5/+2 |
|
|
* | 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 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 1 | -44/+156 |
|
|
* | needforspeed: refactored the replace code slightly; special-case | Fredrik Lundh | 2006-05-24 | 1 | -84/+86 |
|
|
* | 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 |
|
|
* | return 0 on misses, not -1. | Fredrik Lundh | 2006-05-23 | 1 | -1/+1 |
|
|
* | needforspeed: use append+reverse for rsplit, use "bloom filters" to | Fredrik Lundh | 2006-05-23 | 1 | -43/+101 |
|
|
* | 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 | 1 | -34/+32 |
|
|
* | Merge from rjones-funccall branch. | Richard Jones | 2006-05-23 | 2 | -62/+100 |
|
|
* | needforspeed: fixed unicode "in" operator to use same implementation | Fredrik Lundh | 2006-05-23 | 1 | -27/+29 |
|
|
* | unicode_repeat(): Change type of local to Py_ssize_t, | Tim Peters | 2006-05-23 | 1 | -1/+1 |
|
|
* | PyUnicode_Join(): Recent code changes introduced new | Tim Peters | 2006-05-22 | 1 | -9/+8 |
|
|
* | needforspeed: use memcpy for "long" strings; use a better algorithm | Fredrik Lundh | 2006-05-22 | 1 | -4/+11 |
|
|
* | needforspeed: speed up unicode repeat, unicode string copy | Fredrik Lundh | 2006-05-22 | 1 | -4/+7 |
|
|
* | docstring tweaks: count counts non-overlapping substrings, not | Fredrik Lundh | 2006-05-22 | 2 | -5/+5 |
|
|
* | Bug #1462152: file() now checks more thoroughly for invalid mode | Georg Brandl | 2006-05-18 | 1 | -35/+48 |
|
|
* | Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport | Neal Norwitz | 2006-05-15 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | Fix problems found by Coverity. | Neal Norwitz | 2006-05-10 | 1 | -4/+4 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -5/+0 |
|
|
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 1 | -4/+0 |
|
|
* | Fix more ssize_t issues. | Martin v. Löwis | 2006-04-22 | 1 | -5/+5 |
|
|
* | Py_ssize_t issue; repr()'ing a very large string would result in a teensy | Thomas Wouters | 2006-04-21 | 1 | -1/+1 |
|
|
* | Fix variable/format-char discrepancy in new-style class __getitem__, | Thomas Wouters | 2006-04-21 | 1 | -4/+4 |
|
|
* | 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 |
|
|
* | Refactor: Move code that uses co_lnotab from ceval to codeobject | Jeremy Hylton | 2006-04-18 | 1 | -0/+133 |
|
|
* | Comment typo fix | Andrew M. Kuchling | 2006-04-18 | 1 | -1/+1 |
|
|
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -6/+33 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 6 | -28/+29 |
|
|
* | C++ compilation cleanup: Migrate declaration of | Skip Montanaro | 2006-04-18 | 1 | -7/+0 |
|
|