summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* [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
* Include wctype.h.Martin v. Löwis2002-10-071-1/+2
* Patch #479898: Use multibyte C library for printing strings if available.Martin v. Löwis2002-10-071-15/+68
* Fix warnings on 64-bit platforms about casts from pointers to ints.Guido van Rossum2002-09-121-1/+2
* Fix escaping of non-ASCII characters.Martin v. Löwis2002-09-091-2/+4
* Check whether a string resize is necessary at the endWalter Dörwald2002-09-031-3/+4
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-2/+6
* string_contains(): speed up by avoiding function calls whereGuido van Rossum2002-08-241-9/+12
* Code by Inyeol Lee, submitted to SF bug 595350, to implementGuido van Rossum2002-08-231-24/+33
* Fix some endcase bugs in unicode rfind()/rindex() and endswith().Guido van Rossum2002-08-201-1/+1
* SF patch 576101, by Oren Tirosh: alternative implementation ofGuido van Rossum2002-08-191-71/+108
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-191-3/+3
* Get this to compile again if Py_USING_UNICODE is not defined.Neal Norwitz2002-08-161-1/+1
* More changes of DeprecationWarning to FutureWarning.Guido van Rossum2002-08-141-1/+1
* Check for trailing backslash. Fixes #593656.Martin v. Löwis2002-08-141-5/+8
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-141-3/+157
* Implement stage B0 of PEP 237: add warnings for operations thatGuido van Rossum2002-08-111-0/+6
* Committing patch #591250 which provides "str1 in str2" when str1 is aBarry Warsaw2002-08-061-9/+16
* SF 582071 clarified the .split() method's docstring to note that sep=NoneRaymond Hettinger2002-08-051-2/+2
* Fix the problem of not raising a TypeError exception when doing:Neal Norwitz2002-07-281-8/+8
* SF patch #577031, remove PyArg_Parse() since it's deprecatedNeal Norwitz2002-07-281-2/+8
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-281-0/+4
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* object.h special-build macro minefield: renamed all the new lexicalTim Peters2002-07-111-3/+1
* SF bug # 493951 string.{starts,ends}with vs slicesNeal Norwitz2002-06-141-45/+36