summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* needforspeed: use insert+reverse instead of appendFredrik Lundh2006-05-251-16/+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
* Added overflow test for adding two (very) large strings where theAndrew Dalke2006-05-251-2/+7
* Comment typoAndrew M. Kuchling2006-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
* 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-251-2/+21
* needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO CFredrik Lundh2006-05-251-0/+9
* 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
* docstring tweaks: count counts non-overlapping substrings, notFredrik Lundh2006-05-221-3/+3
* 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
* Py_ssize_t issue; repr()'ing a very large string would result in a teensyThomas Wouters2006-04-211-1/+1
* 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
* C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a...Skip Montanaro2006-04-181-1/+1
* No need to cast a Py_ssize_t, use %z in PyErr_FormatNeal Norwitz2006-04-171-2/+2
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-141-0/+1
* Change more occurrences of maxsplit to Py_ssize_t.Martin v. Löwis2006-04-131-4/+4
* Change maxsplit types to Py_ssize_t.Martin v. Löwis2006-04-131-4/+4
* Replace most INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-11/+11
* More low-hanging fruit. Still need to re-arrange some code (or find a betterAnthony Baxter2006-04-111-35/+35
* Remove dead code (reported by HP compiler).Neal Norwitz2006-04-061-8/+5
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-3/+3
* Get rid of warnings on some platforms by using %u for a size_t.Neal Norwitz2006-03-251-1/+1
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-4/+5
* Introduced symbol PY_FORMAT_SIZE_T. See the new commentsTim Peters2006-03-171-31/+22
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-3/+6
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-1/+1
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+12
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t in helper function between Py_ssize_t-using functions.Thomas Wouters2006-02-161-2/+2
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-5/+5
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-0/+21
* Merge ssize_t branch.Martin v. Löwis2006-02-151-156/+157
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Fix bug:Michael W. Hudson2005-10-211-4/+0
* SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. Wi...Neal Norwitz2005-10-201-0/+2
* Fix PyString_Format so that the "%s" format works again when Unicode is notGeorg Brandl2005-10-011-0/+2
* Fix bug in last checkin (2.231). To match previous behavior, unicodeNeil Schemenauer2005-08-311-0/+5
* Change the %s format specifier for str objects so that it returns aNeil Schemenauer2005-08-121-8/+4
* SF bug #1224347: int/long unification and hex()Raymond Hettinger2005-06-291-11/+5
* * Beef-up tests for str.count().Raymond Hettinger2005-02-201-2/+7
* * Beef-up testing of str.__contains__() and str.find().Raymond Hettinger2005-02-201-13/+26
* More bug #1077106 stuff, sorry -- modem induced impatiece!Michael W. Hudson2005-01-311-0/+1
* SF bug #1054139: serious string hashing error in 2.4b1Raymond Hettinger2004-10-261-0/+1
* SF Patch #1007087: Return new string for single subclass joins (Bug #1001011)Raymond Hettinger2004-08-231-12/+8