| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #650653: Raise always value error if the table is not 256 bytes long. | Martin v. Löwis | 2002-12-12 | 1 | -6/+6 |
|
|
* | Patch #614055: Support OpenVMS. | Martin v. Löwis | 2002-12-06 | 1 | -1/+5 |
|
|
* | Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506. | Neil Schemenauer | 2002-11-18 | 1 | -2/+22 |
|
|
* | Fix SF # 635969, No error "not all arguments converted" | Neal Norwitz | 2002-11-12 | 1 | -1/+2 |
|
|
* | Back out #479898. | Martin v. Löwis | 2002-10-11 | 1 | -69/+15 |
|
|
* | Fix a nasty endcase reported by Armin Rigo in SF bug 618623: | Guido van Rossum | 2002-10-11 | 1 | -2/+6 |
|
|
* | Undo this part of the previous checkin: | Guido van Rossum | 2002-10-09 | 1 | -3/+4 |
|
|
* | The string formatting code has a test to switch to Unicode when %s | Guido van Rossum | 2002-10-09 | 1 | -2/+5 |
|
|
* | Include wctype.h. | Martin v. Löwis | 2002-10-07 | 1 | -1/+2 |
|
|
* | Patch #479898: Use multibyte C library for printing strings if available. | Martin v. Löwis | 2002-10-07 | 1 | -15/+68 |
|
|
* | 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 |
|
|