| Commit message (Expand) | Author | Age | Files | Lines |
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 1 | -9/+16 |
|
|
* | SF 582071 clarified the .split() method's docstring to note that sep=None | Raymond Hettinger | 2002-08-05 | 1 | -2/+2 |
|
|
* | Fix the problem of not raising a TypeError exception when doing: | Neal Norwitz | 2002-07-28 | 1 | -8/+8 |
|
|
* | SF patch #577031, remove PyArg_Parse() since it's deprecated | Neal Norwitz | 2002-07-28 | 1 | -2/+8 |
|
|
* | Patch #554716: Use __va_copy where available. | Martin v. Löwis | 2002-07-28 | 1 | -0/+4 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 1 | -3/+1 |
|
|
* | SF bug # 493951 string.{starts,ends}with vs slices | Neal Norwitz | 2002-06-14 | 1 | -45/+36 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -72/+72 |
|
|
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 1 | -2/+62 |
|
|
* | Change name from string to basestring | Neal Norwitz | 2002-05-31 | 1 | -3/+3 |
|
|
* | - A new type object, 'string', is added. This is a common base type | Guido van Rossum | 2002-05-24 | 1 | -1/+55 |
|
|
* | Patch 549187. Improve string formatting error message. | Raymond Hettinger | 2002-05-21 | 1 | -2/+2 |
|
|
* | Add #ifdef PY_USING_UNICODE sections, so that | Walter Dörwald | 2002-05-13 | 1 | -0/+6 |
|
|
* | Repair widespread misuse of _PyString_Resize. Since it's clear people | Tim Peters | 2002-04-27 | 1 | -3/+10 |
|
|
* | Apply patch diff.txt from SF feature request | Walter Dörwald | 2002-04-22 | 1 | -12/+28 |
|
|
* | Return the orginal string only if it's a real str or unicode | Walter Dörwald | 2002-04-15 | 1 | -2/+9 |
|
|
* | Remove 'const' from local variable declaration in string_zfill() -- it | Guido van Rossum | 2002-04-15 | 1 | -71/+80 |
|
|
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 1 | -0/+40 |
|
|
* | Partially implement SF feature request 444708. | Guido van Rossum | 2002-04-13 | 1 | -15/+86 |
|
|
* | Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del. | Neil Schemenauer | 2002-04-12 | 1 | -7/+7 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -64/+64 |
|
|
* | Eliminate DONT_SHARE_SHORT_STRINGS. | Tim Peters | 2002-03-30 | 1 | -12/+2 |
|
|
* | Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. | Tim Peters | 2002-03-29 | 1 | -33/+0 |
|
|
* | Use pymalloc if it's enabled. | Neil Schemenauer | 2002-03-22 | 1 | -7/+7 |
|
|
* | %#x/%#X format conversion cleanup (see patch #450267): | Andrew MacIntyre | 2002-02-28 | 1 | -29/+35 |
|
|
* | OS/2 EMX port changes (Objects part of patch #450267): | Andrew MacIntyre | 2002-02-26 | 1 | -0/+9 |
|
|
* | Updated patch #487906: Revise inline docs. | Martin v. Löwis | 2002-01-16 | 1 | -28/+25 |
|
|
* | SF patch #491049 (David Jacobs): Small PyString_FromString optimization | Guido van Rossum | 2001-12-10 | 1 | -1/+1 |
|
|
* | PyString_FromString: this requires its argument be non-NULL, but doesn't | Tim Peters | 2001-12-06 | 1 | -1/+4 |
|
|
* | Little stuff. | Jeremy Hylton | 2001-12-06 | 1 | -8/+9 |
|
|
* | Add more inline documentation, as contributed in #487906. | Martin v. Löwis | 2001-12-03 | 1 | -3/+8 |
|
|
* | PyString_FromFormatV, string_repr: document why these use sprintf | Tim Peters | 2001-12-03 | 1 | -5/+16 |
|
|
* | Patch 487906: update inline docs. | Martin v. Löwis | 2001-12-02 | 1 | -13/+21 |
|
|
* | sprintf -> PyOS_snprintf in some "obviously safe" cases. | Tim Peters | 2001-11-28 | 1 | -4/+8 |
|
|
* | Make the error message for unsupported operand types cleaner, in | Guido van Rossum | 2001-10-22 | 1 | -1/+1 |
|
|
* | SF bug [#468061] __str__ ignored in str subclass. | Tim Peters | 2001-10-16 | 1 | -2/+21 |
|
|
* | Remove extra "]" in splitlines() docstring. | Fred Drake | 2001-10-13 | 1 | -1/+1 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 1 | -1/+6 |
|
|
* | Merge branch changes (coercion, rich comparisons) into trunk. | Guido van Rossum | 2001-09-27 | 1 | -4/+2 |
|
|
* | Change string comparison so that it applies even when one (or both) | Guido van Rossum | 2001-09-24 | 1 | -3/+4 |
|
|
* | If interning an instance of a string subclass, intern a real string object | Tim Peters | 2001-09-12 | 1 | -4/+20 |
|
|
* | str_subtype_new, unicode_subtype_new: | Tim Peters | 2001-09-12 | 1 | -5/+15 |
|
|
* | More bug 460020: lots of string optimizations inhibited for string | Tim Peters | 2001-09-12 | 1 | -79/+46 |
|
|
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-11 | 1 | -1/+1 |
|
|
* | Fix a memory leak in str_subtype_new(). (All the other | Guido van Rossum | 2001-08-31 | 1 | -3/+3 |
|
|
* | Make str and tuple types subclassable. | Guido van Rossum | 2001-08-30 | 1 | -2/+24 |
|
|
* | Two improvements suggested by Greg Stein: | Barry Warsaw | 2001-08-27 | 1 | -2/+5 |
|
|
* | PyString_FromFormatV: Massage platform %p output to match what gcc does, | Tim Peters | 2001-08-25 | 1 | -0/+8 |
|
|