summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-72/+72
* This is my nearly two year old patchMichael W. Hudson2002-06-111-2/+62
* Change name from string to basestringNeal Norwitz2002-05-311-3/+3
* - A new type object, 'string', is added. This is a common base typeGuido van Rossum2002-05-241-1/+55
* Patch 549187. Improve string formatting error message.Raymond Hettinger2002-05-211-2/+2
* Add #ifdef PY_USING_UNICODE sections, so thatWalter Dörwald2002-05-131-0/+6
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-3/+10
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-221-12/+28
* Return the orginal string only if it's a real str or unicodeWalter Dörwald2002-04-151-2/+9
* Remove 'const' from local variable declaration in string_zfill() -- itGuido van Rossum2002-04-151-71/+80
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-151-0/+40
* Partially implement SF feature request 444708.Guido van Rossum2002-04-131-15/+86
* Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del.Neil Schemenauer2002-04-121-7/+7
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-64/+64
* Eliminate DONT_SHARE_SHORT_STRINGS.Tim Peters2002-03-301-12/+2
* Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.Tim Peters2002-03-291-33/+0
* Use pymalloc if it's enabled.Neil Schemenauer2002-03-221-7/+7
* %#x/%#X format conversion cleanup (see patch #450267):Andrew MacIntyre2002-02-281-29/+35
* OS/2 EMX port changes (Objects part of patch #450267):Andrew MacIntyre2002-02-261-0/+9
* Updated patch #487906: Revise inline docs.Martin v. Löwis2002-01-161-28/+25
* SF patch #491049 (David Jacobs): Small PyString_FromString optimizationGuido van Rossum2001-12-101-1/+1
* PyString_FromString: this requires its argument be non-NULL, but doesn'tTim Peters2001-12-061-1/+4
* Little stuff.Jeremy Hylton2001-12-061-8/+9
* Add more inline documentation, as contributed in #487906.Martin v. Löwis2001-12-031-3/+8
* PyString_FromFormatV, string_repr: document why these use sprintfTim Peters2001-12-031-5/+16
* Patch 487906: update inline docs.Martin v. Löwis2001-12-021-13/+21
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-4/+8
* Make the error message for unsupported operand types cleaner, inGuido van Rossum2001-10-221-1/+1