| Commit message (Expand) | Author | Age | Files | Lines |
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Do the absolute minimal amount of modifications to eradicate | Barry Warsaw | 2000-09-01 | 1 | -3/+0 |
|
|
* | Use METH_OLDARGS instead of numeric constant 0 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 1 | -7/+14 |
|
|
* | Use METH_VARARGS instead of numeric constant 1 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 1 | -14/+28 |
|
|
* | Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', | Thomas Wouters | 2000-07-21 | 1 | -1/+1 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -3/+3 |
|
|
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|
* | ANSI-fication | Peter Schneider-Kamp | 2000-07-10 | 1 | -84/+24 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -1/+1 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -2/+2 |
|
|
* | On 17-Mar-2000, Marc-Andre Lemburg said: | Barry Warsaw | 2000-03-20 | 1 | -1/+1 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 1 | -12/+12 |
|
|
* | split() docstring: Made signature and description for the first | Fred Drake | 1999-11-04 | 1 | -3/+3 |
|
|
* | In atoi(), don't use isxdigit() to test whether the last character | Guido van Rossum | 1999-02-22 | 1 | -1/+1 |
|
|
* | expandtabs__doc__: blank line which was not terminated with \n\ caused | Barry Warsaw | 1999-01-26 | 1 | -1/+0 |
|
|
* | A gift from Fredrik Lundh: fast C implementation of expandtabs(). | Guido van Rossum | 1999-01-25 | 1 | -0/+75 |
|
|
* | Remove prototypes for PyOS_strto[u]l -- Chris Herborth. | Guido van Rossum | 1998-12-10 | 1 | -3/+0 |
|
|
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
|
|
* | Add a missing DECREF in an error exit. Submitted by Jonathan Giddy. | Guido van Rossum | 1998-10-19 | 1 | -0/+1 |
|
|
* | Use the t# format where appropriate. Greg Stein. | Guido van Rossum | 1998-10-08 | 1 | -13/+13 |
|
|
* | Make gcc -Wall happy. | Guido van Rossum | 1998-10-07 | 1 | -1/+1 |
|
|
* | Andrew Dalke's implementation of string.count(). | Guido van Rossum | 1998-10-06 | 1 | -0/+47 |
|
|
* | 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 |
|
|