summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove a redundant check from list_slice() and list_ass_slice().Guido van Rossum1998-10-071-4/+0
* Slight rearrangement of code in lookdict() by Vladimir Marangozov, toGuido van Rossum1998-10-061-4/+3
* Believe it or not, Solaris 2.6 strtod() can move the end pointerGuido van Rossum1998-10-011-1/+6
* Typo reported by Greg Stein: "modifiable" is the correct spelling.Guido van Rossum1998-10-011-1/+1
* In PyFrame_New(), don't set extras to something derived from codeGuido van Rossum1998-09-251-1/+2
* Patches from Greg Stein to support 'P' format in struct module'sGuido van Rossum1998-09-181-0/+55
* Undo victim of careless global substitute ("long long_hash" wasGuido van Rossum1998-09-131-1/+1
* Patch by Mark Hammond to support 64-bit ints on MS platforms.Guido van Rossum1998-08-251-22/+22
* Better error messages when a sequence is indexed with a non-integer.Guido van Rossum1998-08-131-6/+17
* Two patches by Jason Harper:Guido van Rossum1998-08-111-37/+96
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+192
* Fix a potential problem in PyLong_FromString(): could fall through theGuido van Rossum1998-08-041-0/+2
* Better error messages when raising ValueError for int and longGuido van Rossum1998-08-041-6/+9
* Fix a memory leak -- the cached values of __getattr__ etc. were neverGuido van Rossum1998-08-041-0/+3
* PyFile_FromString(): If an exception occurs, pass in the filename thatBarry Warsaw1998-07-231-1/+2
* When comparing objects, always check that tp_compare is not NULLGuido van Rossum1998-07-211-3/+7
* Avoid using calloc(). This triggered an obscure bug on multiprocessorGuido van Rossum1998-07-161-1/+2
* Add special case to PySequence_List() so that list() of a list isGuido van Rossum1998-07-101-0/+6
* Changed PySequence_List() and PySequence_Tuple() to supportGuido van Rossum1998-07-101-27/+38
* Move the definition of PyMethodObject to classobject.h, so it can defineGuido van Rossum1998-07-101-8/+0
* Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObjectGuido van Rossum1998-07-101-6/+0
* Marc-Andre Lemburg's patch to support instance methods with otherGuido van Rossum1998-07-081-16/+21
* Recompute the special getattr/setattr/delattr cache slots afterGuido van Rossum1998-07-081-7/+13
* Added doc strings for methods and a new pop() method.Guido van Rossum1998-06-301-7/+54
* New feature: if the object's type has a non-NULL tp_doc field, thatGuido van Rossum1998-06-271-2/+9
* Slight rearrangement of some code to make it faster, by VladimirGuido van Rossum1998-06-261-9/+15
* Add check in long-to-int conversion for at least one digit.Guido van Rossum1998-06-221-0/+7
* Fix the tests for various anomalies in the string-to-numbersGuido van Rossum1998-06-221-12/+8
* Minor cleanup by Tim after my changes:Guido van Rossum1998-06-171-25/+19
* Tim's latest, with some of my changes (also a TP suggestion) added:Guido van Rossum1998-06-161-218/+551
* Keep Microsoft's compiler happy.Guido van Rossum1998-06-121-4/+1
* When comparing objects of different types (which is done by comparingGuido van Rossum1998-06-091-8/+15
* Should check that PyObject_Str() really returned a string!Guido van Rossum1998-06-091-0/+5
* Allow assignments to special class attributes -- with typechecks, andGuido van Rossum1998-05-291-12/+87
* Tim's revision of the previous patch. He also added some sparts toGuido van Rossum1998-05-291-43/+35
* Fix a whole bunch of error return NULL that should be return -1.Guido van Rossum1998-05-291-5/+5
* Guard against changes in the list size during a compare or sort.Guido van Rossum1998-05-281-22/+31
* Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred().Guido van Rossum1998-05-281-1/+1
* Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred().Guido van Rossum1998-05-281-1/+1
* Tim's quicksort on May 25.Guido van Rossum1998-05-261-123/+141
* Subject: Buglet in PyLong_AsLongGuido van Rossum1998-05-261-9/+19
* Address some gcc -Wall warnings (e.g. include <ctype.h>).Guido van Rossum1998-05-221-29/+54