- 4281258 Minor cleanup by Tim after my changes: by Guido van Rossum · 26 years ago
- 4c4e7df Tim's latest, with some of my changes (also a TP suggestion) added: by Guido van Rossum · 26 years ago
- e0fdf6f Keep Microsoft's compiler happy. by Guido van Rossum · 26 years ago
- cd5a5f6 When comparing objects of different types (which is done by comparing by Guido van Rossum · 26 years ago
- 4a0144c Should check that PyObject_Str() really returned a string! by Guido van Rossum · 26 years ago
- a63eff6 Allow assignments to special class attributes -- with typechecks, and by Guido van Rossum · 26 years ago
- a119c0d Tim's revision of the previous patch. He also added some sparts to by Guido van Rossum · 26 years ago
- ed6219b Fix a whole bunch of error return NULL that should be return -1. by Guido van Rossum · 26 years ago
- ae621ff Guard against changes in the list size during a compare or sort. by Guido van Rossum · 26 years ago
- 617c1b0 Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
- 08570de Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
- 9be6283 Tim's quicksort on May 25. by Guido van Rossum · 26 years ago
- f753181 Subject: Buglet in PyLong_AsLong by Guido van Rossum · 26 years ago
- fa0b6ab Address some gcc -Wall warnings (e.g. include <ctype.h>). by Guido van Rossum · 27 years ago
- 0dabace Make function objects somewhat mutable -- the members func_code, by Guido van Rossum · 27 years ago
- 1c4f458 In PyObject_IsTrue(), don't call function pointers that are NULL by Guido van Rossum · 27 years ago
- cea1c8c Completely reformatted, standardizing indentation as well as programming style. by Guido van Rossum · 27 years ago
- e23eb57 Since PyDict_GetItem() can't raise an exception any more, there's no by Guido van Rossum · 27 years ago
- 474b19e Make sure that PyDict_GetItem[String]() *never* raises an exception. by Guido van Rossum · 27 years ago
- 4180cf1 Remove a redundant statement from halfbinop(). by Guido van Rossum · 27 years ago
- ed7adcf Tim's quicksort on May 13. by Guido van Rossum · 27 years ago
- b705764 Tim's quicksort on May 10. by Guido van Rossum · 27 years ago
- 8530ef6 Add check to conjugate() that there are no excess arguments. by Guido van Rossum · 27 years ago
- 91aaa92 Ugly band-aid to work around a bug in Linux ftell(). by Guido van Rossum · 27 years ago
- e32907d Get rid of the unused ifdefed-out old sort code. by Guido van Rossum · 27 years ago
- 9b00dfa If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str by Guido van Rossum · 27 years ago
- f2044e1 Enable ftruncate() on the Mac. (Jack) by Guido van Rossum · 27 years ago
- 82e6a8f Quicksort retuned by Tim Peters. by Guido van Rossum · 27 years ago
- d30dc0a Clear the error condition set by ftell(). by Guido van Rossum · 27 years ago
- 565798d Be less naive about null characters in an object's repr(). by Guido van Rossum · 27 years ago
- eb90946 Some robustness checks in Py_ReprLeave() in the unlikely event someone by Guido van Rossum · 27 years ago
- fb376de Use Py_Repr{Enter,Leave} to display recursive lists in finite space. by Guido van Rossum · 27 years ago
- 255443b Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space. by Guido van Rossum · 27 years ago
- 8661036 Add implementations of Py_Repr{Enter,Leave}. by Guido van Rossum · 27 years ago
- 1109fbc Make new gcc -Wall happy by Guido van Rossum · 27 years ago
- c3d3f96 Add PyObject_Not(). by Guido van Rossum · 27 years ago
- f7d590c This was the reason a numeric array to a real power was not working. by Guido van Rossum · 27 years ago
- 240c35a Subtle fix in the read() code which could cause a read broken up in by Guido van Rossum · 27 years ago
- f8b4de0 When we have no setvbuf(), make the file totally unbuffered using by Guido van Rossum · 27 years ago
- dcb5e7f Of course, I shouldn't have used lseek() to find out the file's by Guido van Rossum · 27 years ago
- 044b9dc Add back some safeguards on the index elements that were lost in the by Guido van Rossum · 27 years ago
- f1dc061 Add internal routine _PyModule_Clear(), which does approximately what by Guido van Rossum · 27 years ago
- bde6ff7 Vladimir Marangozov' performance hack: copy f_builtins from ancestor by Guido van Rossum · 27 years ago
- 3da3fce Check ferror(), not errno, for fread() error. by Guido van Rossum · 27 years ago
- db93516 Instead of "attribute-less object", issue an error message that by Guido van Rossum · 27 years ago
- 24e62e2 Modified quicksort by Raymund Galvin, after studying the GNU libg++ by Guido van Rossum · 27 years ago
- b7f1afe Change the default repr() and str() of class instance objects to look by Guido van Rossum · 27 years ago
- 242c642 Add a new function PyNumber_CoerceEx() which works just like by Guido van Rossum · 27 years ago
- 3931df9 Undo another glitch of the automatic not-so-Grand Renaming; some local by Guido van Rossum · 27 years ago
- f518154 Fix problem discovered by Barry: if you hit ^C to by Guido van Rossum · 27 years ago
- 6345ac6 Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov) by Guido van Rossum · 27 years ago
- 3c03fa8 Hack suggested by Matthias Klose to pull in all relevant entry points by Guido van Rossum · 27 years ago
- 1f84449 New CObject from Jim Fulton, adds PyCObject_FromVoidPtrAndDesc() and by Guido van Rossum · 27 years ago
- 4a2a621 Write a str() function for class objects that returns by Guido van Rossum · 27 years ago
- 6fcfa72 Correct Barry's fix -- take care of {}.get(0). by Guido van Rossum · 27 years ago
- 320ac33 dict_get(): Fixed a couple of stupid mistakes which caused crashes. by Barry Warsaw · 27 years ago
- 04d73c4 Check that all base classes are indeed class objects, rather than by Guido van Rossum · 27 years ago
- c38c5da dict_get(): New method for item access with different semantics than by Barry Warsaw · 27 years ago
- 4f3bf1e Don't intern the key string for getitem and delitem. by Guido van Rossum · 27 years ago
- 7cc56eb When creating a class, set its __module__ attribute to the module by Guido van Rossum · 27 years ago
- 045e688 Patch submitted by Brad Howes (with one bug fixed by me): allow by Guido van Rossum · 27 years ago
- b2173c3 Allow assignments to instance.__dict__ and instance.__class__. The by Guido van Rossum · 27 years ago
- a27d112 Rename roundup() to roundupsize(), as there's a macro roundup() in the by Guido van Rossum · 27 years ago
- 36f8e2d Use lseek instead of ftell; compensate by adding BUFSIZE by Guido van Rossum · 27 years ago
- fd7a0b8 Made lookdict nearly twice as fast, resulting in a 5% overall by Guido van Rossum · 27 years ago
- 787bdd3 PyTuple_SetItem should require that the tuple's refcnt is one! by Guido van Rossum · 27 years ago
- ea46e4d Fix mixup about PyErr_NoMemory() prototype. by Guido van Rossum · 27 years ago
- 83f9ad8 Fix bug in comparing function objects detected by Sjoerd: by Guido van Rossum · 27 years ago
- fbbd57e Added _Fini() routines to free up some memory by Guido van Rossum · 27 years ago
- 971a7aa Change the Fini function to only remove otherwise unreferenced strings by Guido van Rossum · 27 years ago
- 1f39c5c Added separate free list for cfunction (builtin method) objects, for a by Guido van Rossum · 27 years ago
- 404b95d Provide a dummy empty directory as f_builtins instead of failing, when by Guido van Rossum · 27 years ago
- a0d349f Added separate free list for instance method objects, for a few by Guido van Rossum · 27 years ago
- e09fb55 Added _Py_ResetReferences(), if tracing references. by Guido van Rossum · 27 years ago
- eb46d67 Avoid function calls to access the current thread state and builtins by Guido van Rossum · 27 years ago
- 8cf0476 Added internal routine PyString_Fini() which deletes all interned by Guido van Rossum · 27 years ago
- f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
- 5d8123f Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
- 74ba247 Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
- 71160aa Use #include "mymath.h" instead of declaring fabs() explicitly. by Guido van Rossum · 27 years ago
- a8d5131 Renamed dict.absorb() (too spungy) to dict.update(). by Guido van Rossum · 27 years ago
- 80c2a16 American spelling in doc string. by Guido van Rossum · 27 years ago
- e3f5b9c Added dict.absorb() and dict.copy(). by Guido van Rossum · 27 years ago
- c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 28 years ago
- 5b2121b PyObject_Compare can now return an error. Unfortunately, there are a by Guido van Rossum · 28 years ago
- 27a60b1 PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 28 years ago
- e9eec54 Fix typo in error checking spotted by Just... by Guido van Rossum · 28 years ago
- a9040ec Renamed a local variable from 'PyCFunction' (which is also a typedef by Guido van Rossum · 28 years ago
- 037b220 Moved PyObject_{Get,Set}Attr to object.c. by Guido van Rossum · 28 years ago
- 98ff96a Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. by Guido van Rossum · 28 years ago
- 9678394 Got rid of c_error in favor of errno (and EDOM/ERANGE). by Guido van Rossum · 28 years ago
- 3cca245 Got rid of all the last_name_* bogosities. I don't think the by Guido van Rossum · 28 years ago
- d0c87ee Oops, another forgotten renaming: varobject -> PyVarObject. by Guido van Rossum · 28 years ago
- e61093c Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). by Guido van Rossum · 28 years ago
- 9637432 Renamed mappingobject.c to dictobject.c. by Guido van Rossum · 28 years ago
- a9e7a81 Renamed from mappingobject.c to dictobject.c. by Guido van Rossum · 28 years ago
- 93ad0df Faster floating point allocator, same idea as the int allocator. by Guido van Rossum · 28 years ago
- 789a161 Add optional 'sizehint' argument to readlines(). After approximately by Guido van Rossum · 28 years ago
- 6263d54 Rewrite readlines() to speed it up -- about a factor of 2 on my by Guido van Rossum · 28 years ago
- 5449b6e Speed up read() (i.e. read till EOF) considerably by doing a stat() to by Guido van Rossum · 28 years ago