summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-124-120/+1199
* Fix PR#66. Solution: add error checking around l_divmod() calls inGuido van Rossum1999-10-111-4/+18
* Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcnameGuido van Rossum1999-10-111-1/+1
* Patch by Tim Peters fixing PR#88:Guido van Rossum1999-09-271-1/+7
* Patch by Tim Peters fixing PR#89:Guido van Rossum1999-09-271-0/+5
* Patch by Mark Hammond to avoid certain header files on Windows/CE.Guido van Rossum1999-08-271-1/+10
* PyBuffer_New(): Raise ValueError if size is negative (the otherFred Drake1999-08-041-1/+6
* Mark Favas was quick to note that the last checkin divides by zeroGuido van Rossum1999-07-131-1/+1
* Appropriate overflow checks so that things like sys.maxint*(1,) can'tGuido van Rossum1999-07-121-3/+13
* When deallocating a list, DECREF the items from the end back to the start.Guido van Rossum1999-06-091-1/+6
* Fix bug discovered by John W. Shipman -- when the width of a formatGuido van Rossum1999-06-071-2/+4
* Tim Peters writes:Guido van Rossum1999-05-061-7/+19
* Improve text of some error messages, as suggested by Sean Reifschneider.Guido van Rossum1999-04-191-2/+3
* casts for picky compilers.Guido van Rossum1999-04-101-1/+1
* Vladimir Marangozov contributed updated comments.Guido van Rossum1999-03-241-11/+8
* Folded long lines.Guido van Rossum1999-03-241-9/+18
* Fix a problem with Vladimir's PyFloat_Fini code: clear the free list; ifGuido van Rossum1999-03-191-5/+17
* Fix a problem with Vladimir's PyInt_Fini code: clear the free list; ifGuido van Rossum1999-03-191-5/+27
* Added check for negative offset for PyBuffer_FromObject and check forGuido van Rossum1999-03-191-1/+13
* Vladimir has restructured his code somewhat so that the blocks are nowGuido van Rossum1999-03-122-51/+97
* OK, try again. Vladimir gave me a fix for the alignment bus error,Guido van Rossum1999-03-121-7/+56
* Alas, Vladimir's patch caused a bus error (probably doubleGuido van Rossum1999-03-111-56/+7
* Patch by Vladimir Marangoz to allow freeing of the allocated blocks ofGuido van Rossum1999-03-101-7/+56
* Patch by Vladimir Marangoz to allow freeing of the allocated blocks ofGuido van Rossum1999-03-101-15/+64
* Patch by Chris Petrilli to display the origin of a module in itsGuido van Rossum1999-02-151-3/+30
* Correct typo (Py_MethodDef doesn't exist). Reported by Uwe Zessin.Guido van Rossum1999-01-291-1/+1
* PyLong_FromString(): Nailed a small memory leak. In the str==startBarry Warsaw1999-01-271-0/+1
* Ai! complex_nonzero() has && which should be ||, else decidedlyGuido van Rossum1999-01-251-1/+1
* Jim Ahlstrom patch: cutoff should be a long for machines with 16-bitGuido van Rossum1999-01-141-1/+1
* Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int.Guido van Rossum1999-01-141-1/+5
* Patch by Charles Waldman -- remove unneeded and even harmful test forGuido van Rossum1999-01-101-10/+0
* Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan.Guido van Rossum1999-01-091-3/+3
* Need to include <sys/types.h> for off_t.Guido van Rossum1999-01-071-0/+2
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-11/+53
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-18/+0
* Fix two places (seek and truncate) where a cascade of PyArg_ParseGuido van Rossum1999-01-041-11/+9
* As noted by Per Cederqvist, new_buffersize() sometimes returns theGuido van Rossum1998-12-111-2/+11
* When tracing references, reset the type and size of tuples allocatedGuido van Rossum1998-12-111-0/+4
* Remove prototype for PyOS_strtol -- Chris Herborth.Guido van Rossum1998-12-101-1/+0
* When comparing bound methods, use identity test on the objects,Guido van Rossum1998-12-041-1/+1
* Remove dead code discovered by Vladimir Marangozov.Guido van Rossum1998-11-161-4/+2
* Make tuples less hungry -- an extra item was allocated but never used.Guido van Rossum1998-11-161-1/+1
* A Py_DECREF(f) is missing in PyFrame_New for the error case whenGuido van Rossum1998-10-191-4/+4
* Replace fprintf(stderr, ...) with PySys_WriteStderr(...).Guido van Rossum1998-10-121-2/+2
* listextend(): New method which implements L.extend(L2).Barry Warsaw1998-10-091-0/+74
* Remove unreachable code. (Sjoerd)Guido van Rossum1998-10-091-8/+0
* Greg Stein: Implement the new bf_getcharbuffer function, indicatingGuido van Rossum1998-10-082-4/+36
* Make gcc -Wall happy.Guido van Rossum1998-10-071-5/+4
* Add Greg Stein's buffer object API.Guido van Rossum1998-10-071-2/+3
* Add Greg Stein's buffer object API.Guido van Rossum1998-10-071-0/+599