summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* SF bug [#468061] __str__ ignored in str subclass.Tim Peters2001-10-161-2/+21
* Remove extra "]" in splitlines() docstring.Fred Drake2001-10-131-1/+1
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-1/+2
* SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.Tim Peters2001-10-021-1/+6
* Merge branch changes (coercion, rich comparisons) into trunk.Guido van Rossum2001-09-271-4/+2
* Change string comparison so that it applies even when one (or both)Guido van Rossum2001-09-241-3/+4
* If interning an instance of a string subclass, intern a real string objectTim Peters2001-09-121-4/+20
* str_subtype_new, unicode_subtype_new:Tim Peters2001-09-121-5/+15
* More bug 460020: lots of string optimizations inhibited for stringTim Peters2001-09-121-79/+46
* More on SF bug [#460020] bug or feature: unicode() and subclasses.Tim Peters2001-09-111-1/+1