summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* This was quite a dark bug in my recent in-place string concatenationArmin Rigo2004-08-071-1/+2
* Fixed some compiler warnings.Armin Rigo2004-08-071-2/+2
* Subclasses of string can no longer be interned. The semantics ofJeremy Hylton2004-08-071-22/+12
* .encode()/.decode() patch part 2.Marc-André Lemburg2004-07-081-0/+10
* Allow string and unicode return types from .encode()/.decode()Marc-André Lemburg2004-07-081-2/+24
* sizeof(char) is 1, by definition, so get rid of that expression inTim Peters2004-06-271-12/+7
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-1/+1
* [SF #866875] Add a specialized routine for one characterHye-Shik Chang2004-01-051-45/+95
* There are places in Python which assume bytes have 8-bits. Formalize that aSkip Montanaro2003-12-221-4/+0
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-151-0/+124
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-17/+19
* Add optional fillchar argument to ljust(), rjust(), and center() string methods.Raymond Hettinger2003-11-261-13/+18
* Avoid confusing name for the 3rd argument to str.replace().Fred Drake2003-10-221-3/+3
* Patch #825679: Clarify semantics of .isfoo on empty strings.Martin v. Löwis2003-10-181-12/+13
* SF bug #795506: Wrong handling of string format code for float values.Raymond Hettinger2003-08-271-0/+3
* Fix whitespace.Walter Dörwald2003-06-181-1/+1
* Attempt to make all the various string *strip methods the same.Neal Norwitz2003-04-101-9/+9
* Reformat a few docstrings that caused line wraps in help() output.Guido van Rossum2003-04-091-6/+6
* Fix PyString_Format() so that '%c' % u'a' returns u'a'Walter Dörwald2003-03-311-0/+7
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-291-0/+7
* SF patch #664192 bug #661913: inconsistent error messages between stringRaymond Hettinger2003-01-151-2/+2
* GvR's idea to use memset() for the most common special case of repeatingRaymond Hettinger2003-01-061-1/+5
* Optimize string_repeat.Raymond Hettinger2003-01-061-2/+11
* Patch for bug #659709: bogus computation of float lengthMarc-André Lemburg2002-12-291-6/+16
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* Patch #650653: Raise always value error if the table is not 256 bytes long.Martin v. Löwis2002-12-121-6/+6
* Patch #614055: Support OpenVMS.Martin v. Löwis2002-12-061-1/+5
* Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+22
* Fix SF # 635969, No error "not all arguments converted"Neal Norwitz2002-11-121-1/+2
* Back out #479898.Martin v. Löwis2002-10-111-69/+15
* Fix a nasty endcase reported by Armin Rigo in SF bug 618623:Guido van Rossum2002-10-111-2/+6
* Undo this part of the previous checkin:Guido van Rossum2002-10-091-3/+4
* The string formatting code has a test to switch to Unicode when %sGuido van Rossum2002-10-091-2/+5