summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix a memory leak in str_subtype_new(). (All the otherGuido van Rossum2001-08-311-3/+3
* Make str and tuple types subclassable.Guido van Rossum2001-08-301-2/+24
* Two improvements suggested by Greg Stein:Barry Warsaw2001-08-271-2/+5
* PyString_FromFormatV: Massage platform %p output to match what gcc does,Tim Peters2001-08-251-0/+8
* PyString_FromFormat() and PyString_FromFormatV(): Largely ripped fromBarry Warsaw2001-08-241-0/+155
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-4/+56
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-103/+56
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-26/+50
* Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h.Jeremy Hylton2001-07-301-5/+0
* Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup.Tim Peters2001-06-161-1/+2
* SF bug 433228: repr(list) woes when len(list) big.Tim Peters2001-06-161-0/+17
* Fix for bug #432384: Recursion in PyString_AsEncodedString?Marc-André Lemburg2001-06-121-1/+1
* Patch #424335: Implement string_richcompare, remove string_compare.Martin v. Löwis2001-05-241-12/+77
* This patch changes the way the string .encode() method works slightlyMarc-André Lemburg2001-05-151-20/+90
* Heh. I need a break. After this: stropmodule & stringobject were moreTim Peters2001-05-101-8/+6
* Fudge. stropmodule and stringobject both had copies of the buggyTim Peters2001-05-101-32/+41
* SF patch #416247 2.1c1 stringobject: unused vrbl cleanup.Tim Peters2001-05-091-2/+0
* Sheesh -- repair the dodge around "cast isn't an lvalue" complaints toTim Peters2001-05-091-0/+4
* Mark Favas reported that gcc caught me using casts as lvalues. Dodge it.Tim Peters2001-05-091-6/+10
* Ack! Restore the COUNT_ALLOCS one_strings code.Tim Peters2001-05-091-1/+5
* My change to string_item() left an extra reference to each 1-characterTim Peters2001-05-091-4/+3
* Intern 1-character strings as soon as they're created. As-is, they aren'tTim Peters2001-05-081-15/+12
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-051-1/+8
* Fix for bug #417030: "print '%*s' fails for unicode string"Marc-André Lemburg2001-05-021-2/+3
* Add a proper implementation for the tp_str slot (returning self, ofGuido van Rossum2001-05-011-1/+8
* A different approach to the problem reported inTim Peters2001-04-281-33/+39
* Iterators phase 1. This comprises:Guido van Rossum2001-04-201-0/+2
* Bug 415514 reported that e.g.Tim Peters2001-04-121-25/+24
* Fix for SF bug #415514: "%#x" % 0 caused assertion failure/abort.Tim Peters2001-04-121-14/+25
* _Py_ReleaseInternedStrings(): Private API function to decref andBarry Warsaw2001-02-231-0/+10
* Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings.Ka-Ping Yee2001-01-241-6/+17
* Derivative of patch #102549, "simpler, faster(!) implementation of string.join".Tim Peters2001-01-191-38/+52