| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Made all list methods use PyArg_ParseTuple(), for more accurate | Guido van Rossum | 2000-02-24 | 1 | -30/+29 |
|
|
| * | Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), | Andrew M. Kuchling | 2000-02-23 | 1 | -1/+19 |
|
|
| * | dict_has_key(): Accept only one parameter. PR#210 reported by | Fred Drake | 2000-02-23 | 1 | -4/+4 |
|
|
| * | In response to one particular complaint on edu-sig, change some error | Guido van Rossum | 2000-02-15 | 1 | -3/+3 |
|
|
| * | Make multiplying a sequence by a long integer (5L * 'b') legal | Andrew M. Kuchling | 2000-02-14 | 1 | -2/+13 |
|
|
| * | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 10 | -19/+21 |
|
|
| * | On Linux, one sometimes sees spurious errors after interrupting | Guido van Rossum | 2000-01-12 | 1 | -0/+1 |
|
|
| * | Implement the other easy thing: repr() of a float now uses %.17g, | Guido van Rossum | 1999-12-23 | 1 | -6/+43 |
|
|
| * | long_format(): Now takes a third parameter, addL; iff true, a | Fred Drake | 1999-12-23 | 1 | -9/+19 |
|
|
| * | do_strip(): Fixed cut-and-paste error; this function should check for | Barry Warsaw | 1999-12-15 | 1 | -3/+1 |
|
|
| * | Mainlining the string_methods branch. See branch revision log | Barry Warsaw | 1999-10-12 | 4 | -120/+1199 |
|
|
| * | Fix PR#66. Solution: add error checking around l_divmod() calls in | Guido van Rossum | 1999-10-11 | 1 | -4/+18 |
|
|
| * | Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname | Guido van Rossum | 1999-10-11 | 1 | -1/+1 |
|
|
| * | Patch by Tim Peters fixing PR#88: | Guido van Rossum | 1999-09-27 | 1 | -1/+7 |
|
|
| * | Patch by Tim Peters fixing PR#89: | Guido van Rossum | 1999-09-27 | 1 | -0/+5 |
|
|
| * | Patch by Mark Hammond to avoid certain header files on Windows/CE. | Guido van Rossum | 1999-08-27 | 1 | -1/+10 |
|
|
| * | PyBuffer_New(): Raise ValueError if size is negative (the other | Fred Drake | 1999-08-04 | 1 | -1/+6 |
|
|
| * | Mark Favas was quick to note that the last checkin divides by zero | Guido van Rossum | 1999-07-13 | 1 | -1/+1 |
|
|
| * | Appropriate overflow checks so that things like sys.maxint*(1,) can't | Guido van Rossum | 1999-07-12 | 1 | -3/+13 |
|
|
| * | When deallocating a list, DECREF the items from the end back to the start. | Guido van Rossum | 1999-06-09 | 1 | -1/+6 |
|
|
| * | Fix bug discovered by John W. Shipman -- when the width of a format | Guido van Rossum | 1999-06-07 | 1 | -2/+4 |
|
|
| * | Tim Peters writes: | Guido van Rossum | 1999-05-06 | 1 | -7/+19 |
|
|
| * | Improve text of some error messages, as suggested by Sean Reifschneider. | Guido van Rossum | 1999-04-19 | 1 | -2/+3 |
|
|
| * | casts for picky compilers. | Guido van Rossum | 1999-04-10 | 1 | -1/+1 |
|
|
| * | Vladimir Marangozov contributed updated comments. | Guido van Rossum | 1999-03-24 | 1 | -11/+8 |
|
|
| * | Folded long lines. | Guido van Rossum | 1999-03-24 | 1 | -9/+18 |
|
|
| * | Fix a problem with Vladimir's PyFloat_Fini code: clear the free list; if | Guido van Rossum | 1999-03-19 | 1 | -5/+17 |
|
|
| * | Fix a problem with Vladimir's PyInt_Fini code: clear the free list; if | Guido van Rossum | 1999-03-19 | 1 | -5/+27 |
|
|
| * | Added check for negative offset for PyBuffer_FromObject and check for | Guido van Rossum | 1999-03-19 | 1 | -1/+13 |
|
|
| * | Vladimir has restructured his code somewhat so that the blocks are now | Guido van Rossum | 1999-03-12 | 2 | -51/+97 |
|
|
| * | OK, try again. Vladimir gave me a fix for the alignment bus error, | Guido van Rossum | 1999-03-12 | 1 | -7/+56 |
|
|
| * | Alas, Vladimir's patch caused a bus error (probably double | Guido van Rossum | 1999-03-11 | 1 | -56/+7 |
|
|
| * | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -7/+56 |
|
|
| * | Patch by Vladimir Marangoz to allow freeing of the allocated blocks of | Guido van Rossum | 1999-03-10 | 1 | -15/+64 |
|
|
| * | Patch by Chris Petrilli to display the origin of a module in its | Guido van Rossum | 1999-02-15 | 1 | -3/+30 |
|
|
| * | Correct typo (Py_MethodDef doesn't exist). Reported by Uwe Zessin. | Guido van Rossum | 1999-01-29 | 1 | -1/+1 |
|
|
| * | PyLong_FromString(): Nailed a small memory leak. In the str==start | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
|
|
| * | Ai! complex_nonzero() has && which should be ||, else decidedly | Guido van Rossum | 1999-01-25 | 1 | -1/+1 |
|
|
| * | Jim Ahlstrom patch: cutoff should be a long for machines with 16-bit | Guido van Rossum | 1999-01-14 | 1 | -1/+1 |
|
|
| * | Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int. | Guido van Rossum | 1999-01-14 | 1 | -1/+5 |
|
|
| * | Patch by Charles Waldman -- remove unneeded and even harmful test for | Guido van Rossum | 1999-01-10 | 1 | -10/+0 |
|
|
| * | Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan. | Guido van Rossum | 1999-01-09 | 1 | -3/+3 |
|
|
| * | Need to include <sys/types.h> for off_t. | Guido van Rossum | 1999-01-07 | 1 | -0/+2 |
|
|
| * | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -11/+53 |
|
|
| * | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -18/+0 |
|
|
| * | Fix two places (seek and truncate) where a cascade of PyArg_Parse | Guido van Rossum | 1999-01-04 | 1 | -11/+9 |
|
|
| * | As noted by Per Cederqvist, new_buffersize() sometimes returns the | Guido van Rossum | 1998-12-11 | 1 | -2/+11 |
|
|
| * | When tracing references, reset the type and size of tuples allocated | Guido van Rossum | 1998-12-11 | 1 | -0/+4 |
|
|
| * | Remove prototype for PyOS_strtol -- Chris Herborth. | Guido van Rossum | 1998-12-10 | 1 | -1/+0 |
|
|
| * | When comparing bound methods, use identity test on the objects, | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
|
|