summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make function objects somewhat mutable -- the members func_code,Guido van Rossum1998-05-221-3/+35
* In PyObject_IsTrue(), don't call function pointers that are NULLGuido van Rossum1998-05-221-3/+6
* Completely reformatted, standardizing indentation as well asGuido van Rossum1998-05-221-582/+900
* Since PyDict_GetItem() can't raise an exception any more, there's noGuido van Rossum1998-05-141-4/+1
* Make sure that PyDict_GetItem[String]() *never* raises an exception.Guido van Rossum1998-05-141-2/+3
* Remove a redundant statement from halfbinop().Guido van Rossum1998-05-131-1/+0
* Tim's quicksort on May 13.Guido van Rossum1998-05-131-1/+1
* Tim's quicksort on May 10.Guido van Rossum1998-05-131-68/+99
* Add check to conjugate() that there are no excess arguments.Guido van Rossum1998-05-071-2/+5
* Ugly band-aid to work around a bug in Linux ftell().Guido van Rossum1998-05-051-1/+3
* Get rid of the unused ifdefed-out old sort code.Guido van Rossum1998-04-281-76/+0
* If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and strGuido van Rossum1998-04-281-0/+12
* Enable ftruncate() on the Mac.Guido van Rossum1998-04-281-0/+6
* Quicksort retuned by Tim Peters.Guido van Rossum1998-04-281-33/+26
* Clear the error condition set by ftell().Guido van Rossum1998-04-271-0/+2
* Be less naive about null characters in an object's repr().Guido van Rossum1998-04-211-2/+2
* Some robustness checks in Py_ReprLeave() in the unlikely event someoneGuido van Rossum1998-04-111-0/+4
* Use Py_Repr{Enter,Leave} to display recursive lists in finite space.Guido van Rossum1998-04-101-1/+20
* Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space.Guido van Rossum1998-04-101-5/+31
* Add implementations of Py_Repr{Enter,Leave}.Guido van Rossum1998-04-101-0/+64
* Make new gcc -Wall happyGuido van Rossum1998-04-104-7/+13
* Add PyObject_Not().Guido van Rossum1998-04-091-0/+14
* This was the reason a numeric array to a real power was not working.Guido van Rossum1998-04-031-1/+2
* Subtle fix in the read() code which could cause a read broken up inGuido van Rossum1998-03-181-1/+1
* When we have no setvbuf(), make the file totally unbuffered usingGuido van Rossum1998-03-061-1/+4
* Of course, I shouldn't have used lseek() to find out the file'sGuido van Rossum1998-03-031-6/+3
* Add back some safeguards on the index elements that were lost in theGuido van Rossum1998-02-251-2/+2
* Add internal routine _PyModule_Clear(), which does approximately whatGuido van Rossum1998-02-191-1/+50
* Vladimir Marangozov' performance hack: copy f_builtins from ancestorGuido van Rossum1998-02-191-3/+14
* Check ferror(), not errno, for fread() error.Guido van Rossum1998-02-191-1/+1
* Instead of "attribute-less object", issue an error message thatGuido van Rossum1998-01-191-1/+4
* Modified quicksort by Raymund Galvin, after studying the GNU libg++Guido van Rossum1997-12-101-23/+48