summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* 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-252-6/+46
* needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO CFredrik Lundh2006-05-251-0/+9
* Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for thi...Kristján Valur Jónsson2006-05-251-5/+2
* needforspeed: make new upper/lower work properly for single-characterFredrik Lundh2006-05-251-4/+8
* needforspeed: speed up upper and lower for 8-bit string objects.Fredrik Lundh2006-05-251-22/+20
* Heavily fiddled variant of patch #1442927: PyLong_FromString optimization.Tim Peters2006-05-241-44/+156
* needforspeed: refactored the replace code slightly; special-caseFredrik Lundh2006-05-241-84/+86
* needforspeedindeed: use fastsearch also for __contains__Fredrik Lundh2006-05-241-4/+19
* needforspeed: use "fastsearch" for count and findstring helpers. thisFredrik Lundh2006-05-241-1/+109
* use Py_ssize_t for string indexes (thanks, neal!)Fredrik Lundh2006-05-241-2/+2
* return 0 on misses, not -1.Fredrik Lundh2006-05-231-1/+1
* needforspeed: use append+reverse for rsplit, use "bloom filters" toFredrik Lundh2006-05-231-43/+101
* fix broken mergeRichard Jones2006-05-231-7/+2
* Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.Richard Jones2006-05-231-34/+32
* Merge from rjones-funccall branch.Richard Jones2006-05-232-62/+100
* needforspeed: fixed unicode "in" operator to use same implementationFredrik Lundh2006-05-231-27/+29
* unicode_repeat(): Change type of local to Py_ssize_t,Tim Peters2006-05-231-1/+1
* PyUnicode_Join(): Recent code changes introduced newTim Peters2006-05-221-9/+8
* needforspeed: use memcpy for "long" strings; use a better algorithmFredrik Lundh2006-05-221-4/+11
* needforspeed: speed up unicode repeat, unicode string copyFredrik Lundh2006-05-221-4/+7
* docstring tweaks: count counts non-overlapping substrings, notFredrik Lundh2006-05-222-5/+5
* Bug #1462152: file() now checks more thoroughly for invalid modeGeorg Brandl2006-05-181-35/+48
* Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backportNeal Norwitz2006-05-151-1/+1
* Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatVTim Peters2006-05-131-13/+22
* Revert 43315: Printing of %zd must be signed.Martin v. Löwis2006-05-131-2/+2
* Fix problems found by Coverity.Neal Norwitz2006-05-101-4/+4
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-5/+0
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-4/+0
* Fix more ssize_t issues.Martin v. Löwis2006-04-221-5/+5
* Py_ssize_t issue; repr()'ing a very large string would result in a teensyThomas Wouters2006-04-211-1/+1
* Fix variable/format-char discrepancy in new-style class __getitem__,Thomas Wouters2006-04-211-4/+4
* Make s.replace() work with explicit counts exceeding 2Gb.Thomas Wouters2006-04-191-2/+2
* Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center andThomas Wouters2006-04-191-8/+8
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-0/+133
* Comment typo fixAndrew M. Kuchling2006-04-181-1/+1
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-6/+33
* C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a...Skip Montanaro2006-04-186-28/+29
* C++ compilation cleanup: Migrate declaration ofSkip Montanaro2006-04-181-7/+0
* No need to cast a Py_ssize_t, use %z in PyErr_FormatNeal Norwitz2006-04-171-2/+2
* Use %zd instead of %i as format character (in call to PyErr_Format) forThomas Wouters2006-04-161-1/+1
* gen_del(): Looks like much this was copy/pasted fromTim Peters2006-04-151-1/+1
* Remove now-unused variables from tp_traverse and tp_clear methods.Tim Peters2006-04-152-3/+0
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-1513-257/+68
* - Whitespace normalizationThomas Wouters2006-04-151-12/+14
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-153-16/+4