summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #7622: Improve the split(), rsplit(), splitlines() and replace()Antoine Pitrou2010-01-131-469/+51
* Issue #7462: Implement the stringlib fast search algorithm for the `rfind`,Antoine Pitrou2010-01-021-32/+11
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-291-2/+0
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-3/+0
* Remove restriction on precision when formatting floats. This is theMark Dickinson2009-11-231-57/+21
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-12/+59
* Finished removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-3/+17
* #7116: str.join() takes an iterable.Georg Brandl2009-10-141-2/+2
* add keyword arguments support to str/unicode encode and decode #6300Benjamin Peterson2009-09-181-6/+10
* use macrosBenjamin Peterson2009-09-171-1/+1
* Silence gcc 'comparison always false' warningMark Dickinson2009-08-281-1/+3
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-251-7/+2
* Issue #532631: Add paranoid check to avoid potential buffer overflowMark Dickinson2009-03-291-1/+10
* Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 testMark Dickinson2009-03-291-1/+1
* Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.Martin v. Löwis2009-01-071-1/+1
* Issue #4445: save 3 bytes (on average, on a typical machine) perMark Dickinson2008-12-051-13/+21
* Docstring change for *partition: use same tense as other docstrings.Andrew M. Kuchling2008-10-041-7/+7
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-1/+1
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-3/+4
* Preemptively backport the relevant parts of r65420Antoine Pitrou2008-08-021-1/+1
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-2/+17
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-171-8/+5
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-171-5/+8
* Rename bytesobject.c back to stringobject.c to keep with the PyString theme.Gregory P. Smith2008-06-101-0/+5215
* Renamed bytesobject.c to bytearrayobject.cChristian Heimes2008-05-261-5176/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-481/+481
* First step of the C API rename:Christian Heimes2008-05-261-2/+2
* #2809 followup: even better split docstring.Georg Brandl2008-05-111-2/+2
* Addresses issue 2802: 'n' formatting for integers.Eric Smith2008-05-111-0/+4
* #2809: elaborate str.split docstring a bit.Georg Brandl2008-05-111-1/+2
* get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.Gregory P. Smith2008-04-101-1/+0
* Raise SystemError when size < 0 is passed into PyString_FromStringAndSize,Gregory P. Smith2008-04-091-0/+5
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-261-1/+13
* Fix the overflows in expandtabs(). "This time for sure!"Guido van Rossum2008-03-111-25/+32
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-241-16/+46
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-9/+20
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-64/+64
* When splitting, avoid making a copy of the string if the split doesn't findSkip Montanaro2007-12-081-11/+42
* Now in find, rfind, index, and rindex, you can use None as defaults,Facundo Batista2007-11-161-2/+13
* Add missing "return NULL" in overflow check in PyObject_Repr().Guido van Rossum2007-11-061-0/+1
* Backport fixes for the code that decodes octal escapes (and for PyStringGuido van Rossum2007-10-291-4/+6
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-2/+10
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-0/+11
* Bug #1763149: use proper slice syntax in docstring.Georg Brandl2007-07-291-2/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-68/+66
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-121-1/+2
* Fix a bug when there was a newline in the string expandtabs was called on.Neal Norwitz2007-06-111-2/+8
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-091-3/+14
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-121-8/+16
* Backport from Py3k branch: fix refleak in PyString_Format.Georg Brandl2007-02-261-1/+5