| Commit message (Expand) | Author | Age | Files | Lines |
* | Better error messages when raising ValueError for int literals. (The | Guido van Rossum | 1998-08-04 | 1 | -8/+3 |
|
|
* | Make sure that at least one digit has been consumed in atoi(). | Guido van Rossum | 1998-07-25 | 1 | -0/+4 |
|
|
* | Make sure that no use of a function pointer gotten from a | Guido van Rossum | 1998-05-22 | 1 | -3/+5 |
|
|
* | strop_replace(): balk if the pattern string is empty. | Guido van Rossum | 1998-05-14 | 1 | -0/+4 |
|
|
* | Check for boundary errors in [r]find -- find("x", "", 2) should return -1. | Guido van Rossum | 1998-03-24 | 1 | -2/+2 |
|
|
* | Forgot to return NULL in joinfields() when a type error was detected | Guido van Rossum | 1998-02-06 | 1 | -1/+3 |
|
|
* | Oops, big glitch. Charles had put a 1 in the column for argument list | Guido van Rossum | 1997-12-30 | 1 | -8/+8 |
|
|
* | Oops, the last checkin left a blank line in a string literal. | Guido van Rossum | 1997-12-30 | 1 | -1/+1 |
|
|
* | Minor editing corrections. | Guido van Rossum | 1997-12-29 | 1 | -5/+6 |
|
|
* | Added doc string, provided by Charles Waldman (with some reformatting | Guido van Rossum | 1997-12-29 | 1 | -29/+162 |
|
|
* | split_whitespace(): Make sure delimiter is stripped from the beginning | Barry Warsaw | 1997-12-02 | 1 | -1/+4 |
|
|
* | mymemreplace(), strop_replace(): Add support for optional 4th argument | Barry Warsaw | 1997-11-29 | 1 | -4/+12 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1997-04-29 | 1 | -1/+1 |
|
|
* | Added replace() implementation by Perry Stoll (debugged and reformatted by me). | Guido van Rossum | 1997-04-02 | 1 | -1/+167 |
|
|
* | Add optional 4th argument to [r]find and [r]index (end of slice). | Guido van Rossum | 1997-03-14 | 1 | -9/+27 |
|
|
* | Changes for Lee Busby's SIGFPE patch set. | Guido van Rossum | 1997-02-14 | 1 | -0/+2 |
|
|
* | New strop_joinfields implementation, highly optimized for Lists. All | Barry Warsaw | 1997-01-06 | 1 | -60/+82 |
|
|
* | Rewrote translate() as follows: | Guido van Rossum | 1997-01-06 | 1 | -28/+52 |
|
|
* | strop_upper(), strop_lower(): shared code version caused to much of a | Barry Warsaw | 1997-01-03 | 1 | -27/+65 |
|
|
* | Several changes: | Barry Warsaw | 1997-01-03 | 1 | -142/+106 |
|
|
* | Greatly renamed. | Barry Warsaw | 1996-12-09 | 1 | -178/+181 |
|
|
* | Keep gcc -Wall happy. | Guido van Rossum | 1996-12-05 | 1 | -3/+3 |
|
|
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 1 | -13/+20 |
|
|
* | Replace all uses of strncmp (in split, find, rfind) with memcmp, so | Guido van Rossum | 1996-10-04 | 1 | -3/+3 |
|
|
* | Add text of argument to errors for atoi(), atol(), atof(). | Guido van Rossum | 1996-09-11 | 1 | -5/+25 |
|
|
* | Raise ValueError on empty string passed into atoi(), atol(), atof(). | Guido van Rossum | 1996-08-21 | 1 | -0/+12 |
|
|
* | Remove some unused variables. | Guido van Rossum | 1996-08-19 | 1 | -9/+0 |
|
|
* | Added lstrip() and rstrip(). | Guido van Rossum | 1996-08-08 | 1 | -17/+93 |
|
|
* | Added 3rd optional argument to translate(), a string of characters to delete. | Guido van Rossum | 1996-07-23 | 1 | -11/+60 |
|
|
* | Test for zero-length argument in capitalize(). | Guido van Rossum | 1996-06-17 | 1 | -1/+1 |
|
|
* | added capitalize() | Guido van Rossum | 1996-06-12 | 1 | -0/+45 |
|
|
* | added strop.translate(s, table) | Guido van Rossum | 1995-09-13 | 1 | -0/+30 |
|
|
* | unified join(fields), split(fields) | Guido van Rossum | 1995-05-03 | 1 | -12/+20 |
|
|
* | fix stupid bug in strip and split | Guido van Rossum | 1995-02-14 | 1 | -2/+2 |
|
|
* | use Py_CHARMASK | Guido van Rossum | 1995-02-10 | 1 | -14/+10 |
|
|
* | Added 1995 to copyright message. | Guido van Rossum | 1995-01-04 | 1 | -2/+2 |
|
|
* | * various modules: #include "Python.h" and remove most remporary | Guido van Rossum | 1994-09-14 | 1 | -8/+4 |
|
|
* | * Modules/stropmodule.c: implement find/rfind instead of | Guido van Rossum | 1994-08-17 | 1 | -8/+6 |
|
|
* | * Modules/{Setup.in,Makefile.pre.in}: renamed some modules to | Guido van Rossum | 1994-08-05 | 1 | -1/+1 |
|
|
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -7/+108 |
|
|
* | Fix memory leaks in join & joinfields | Guido van Rossum | 1993-11-05 | 1 | -11/+25 |
|
|
* | Added rindex(). index() and rindex() interpret negative start index | Guido van Rossum | 1993-10-26 | 1 | -5/+41 |
|
|
* | Several optimizations and speed improvements. | Sjoerd Mullender | 1993-10-22 | 1 | -18/+25 |
|
|
* | Bug fix: check whether call succeeded *after* the call. | Sjoerd Mullender | 1993-09-14 | 1 | -1/+1 |
|
|
* | * config.c: different default PYTHONPATH for MS-DOS | Guido van Rossum | 1993-07-09 | 1 | -4/+34 |
|
|
* | stropmodule.c: use C isspace(c) to test for whitespace; add | Guido van Rossum | 1993-07-08 | 1 | -7/+19 |
|
|
* | * Changed all copyright messages to include 1993. | Guido van Rossum | 1993-03-29 | 1 | -2/+2 |
|
|
* | * config.c: Added audioop to lists. | Guido van Rossum | 1992-11-26 | 1 | -0/+65 |
|
|
* | Makefile uses $> more often; cgen supports filename argument; added | Guido van Rossum | 1992-09-11 | 1 | -0/+108 |
|
|
* | Re-implement some operations from string.py in C, for speed. | Guido van Rossum | 1992-09-03 | 1 | -0/+201 |
|
|