| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix warnings on 64-bit platforms about casts from pointers to ints. | Guido van Rossum | 2002-09-12 | 1 | -1/+2 |
|
|
* | Fix escaping of non-ASCII characters. | Martin v. Löwis | 2002-09-09 | 1 | -2/+4 |
|
|
* | Check whether a string resize is necessary at the end | Walter Dörwald | 2002-09-03 | 1 | -3/+4 |
|
|
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 1 | -2/+6 |
|
|
* | string_contains(): speed up by avoiding function calls where | Guido van Rossum | 2002-08-24 | 1 | -9/+12 |
|
|
* | Code by Inyeol Lee, submitted to SF bug 595350, to implement | Guido van Rossum | 2002-08-23 | 1 | -24/+33 |
|
|
* | Fix some endcase bugs in unicode rfind()/rindex() and endswith(). | Guido van Rossum | 2002-08-20 | 1 | -1/+1 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 1 | -71/+108 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 1 | -3/+3 |
|
|
* | Get this to compile again if Py_USING_UNICODE is not defined. | Neal Norwitz | 2002-08-16 | 1 | -1/+1 |
|
|
* | More changes of DeprecationWarning to FutureWarning. | Guido van Rossum | 2002-08-14 | 1 | -1/+1 |
|
|
* | Check for trailing backslash. Fixes #593656. | Martin v. Löwis | 2002-08-14 | 1 | -5/+8 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -3/+157 |
|
|
* | Implement stage B0 of PEP 237: add warnings for operations that | Guido van Rossum | 2002-08-11 | 1 | -0/+6 |
|
|
* | 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 |
|
|