| Commit message (Expand) | Author | Age | Files | Lines |
* | Minor cleanup by Tim after my changes: | Guido van Rossum | 1998-06-17 | 1 | -25/+19 |
|
|
* | Tim's latest, with some of my changes (also a TP suggestion) added: | Guido van Rossum | 1998-06-16 | 1 | -218/+551 |
|
|
* | Keep Microsoft's compiler happy. | Guido van Rossum | 1998-06-12 | 1 | -4/+1 |
|
|
* | When comparing objects of different types (which is done by comparing | Guido van Rossum | 1998-06-09 | 1 | -8/+15 |
|
|
* | Should check that PyObject_Str() really returned a string! | Guido van Rossum | 1998-06-09 | 1 | -0/+5 |
|
|
* | Allow assignments to special class attributes -- with typechecks, and | Guido van Rossum | 1998-05-29 | 1 | -12/+87 |
|
|
* | Tim's revision of the previous patch. He also added some sparts to | Guido van Rossum | 1998-05-29 | 1 | -43/+35 |
|
|
* | Fix a whole bunch of error return NULL that should be return -1. | Guido van Rossum | 1998-05-29 | 1 | -5/+5 |
|
|
* | Guard against changes in the list size during a compare or sort. | Guido van Rossum | 1998-05-28 | 1 | -22/+31 |
|
|
* | Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). | Guido van Rossum | 1998-05-28 | 1 | -1/+1 |
|
|
* | Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). | Guido van Rossum | 1998-05-28 | 1 | -1/+1 |
|
|
* | Tim's quicksort on May 25. | Guido van Rossum | 1998-05-26 | 1 | -123/+141 |
|
|
* | Subject: Buglet in PyLong_AsLong | Guido van Rossum | 1998-05-26 | 1 | -9/+19 |
|
|
* | Address some gcc -Wall warnings (e.g. include <ctype.h>). | Guido van Rossum | 1998-05-22 | 1 | -29/+54 |
|
|
* | Make function objects somewhat mutable -- the members func_code, | Guido van Rossum | 1998-05-22 | 1 | -3/+35 |
|
|
* | In PyObject_IsTrue(), don't call function pointers that are NULL | Guido van Rossum | 1998-05-22 | 1 | -3/+6 |
|
|
* | Completely reformatted, standardizing indentation as well as | Guido van Rossum | 1998-05-22 | 1 | -582/+900 |
|
|
* | Since PyDict_GetItem() can't raise an exception any more, there's no | Guido van Rossum | 1998-05-14 | 1 | -4/+1 |
|
|
* | Make sure that PyDict_GetItem[String]() *never* raises an exception. | Guido van Rossum | 1998-05-14 | 1 | -2/+3 |
|
|
* | Remove a redundant statement from halfbinop(). | Guido van Rossum | 1998-05-13 | 1 | -1/+0 |
|
|
* | Tim's quicksort on May 13. | Guido van Rossum | 1998-05-13 | 1 | -1/+1 |
|
|
* | Tim's quicksort on May 10. | Guido van Rossum | 1998-05-13 | 1 | -68/+99 |
|
|
* | Add check to conjugate() that there are no excess arguments. | Guido van Rossum | 1998-05-07 | 1 | -2/+5 |
|
|
* | Ugly band-aid to work around a bug in Linux ftell(). | Guido van Rossum | 1998-05-05 | 1 | -1/+3 |
|
|
* | Get rid of the unused ifdefed-out old sort code. | Guido van Rossum | 1998-04-28 | 1 | -76/+0 |
|
|
* | If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str | Guido van Rossum | 1998-04-28 | 1 | -0/+12 |
|
|
* | Enable ftruncate() on the Mac. | Guido van Rossum | 1998-04-28 | 1 | -0/+6 |
|
|
* | Quicksort retuned by Tim Peters. | Guido van Rossum | 1998-04-28 | 1 | -33/+26 |
|
|
* | Clear the error condition set by ftell(). | Guido van Rossum | 1998-04-27 | 1 | -0/+2 |
|
|
* | Be less naive about null characters in an object's repr(). | Guido van Rossum | 1998-04-21 | 1 | -2/+2 |
|
|
* | Some robustness checks in Py_ReprLeave() in the unlikely event someone | Guido van Rossum | 1998-04-11 | 1 | -0/+4 |
|
|
* | Use Py_Repr{Enter,Leave} to display recursive lists in finite space. | Guido van Rossum | 1998-04-10 | 1 | -1/+20 |
|
|
* | Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space. | Guido van Rossum | 1998-04-10 | 1 | -5/+31 |
|
|
* | Add implementations of Py_Repr{Enter,Leave}. | Guido van Rossum | 1998-04-10 | 1 | -0/+64 |
|
|
* | Make new gcc -Wall happy | Guido van Rossum | 1998-04-10 | 4 | -7/+13 |
|
|
* | Add PyObject_Not(). | Guido van Rossum | 1998-04-09 | 1 | -0/+14 |
|
|
* | This was the reason a numeric array to a real power was not working. | Guido van Rossum | 1998-04-03 | 1 | -1/+2 |
|
|
* | Subtle fix in the read() code which could cause a read broken up in | Guido van Rossum | 1998-03-18 | 1 | -1/+1 |
|
|
* | When we have no setvbuf(), make the file totally unbuffered using | Guido van Rossum | 1998-03-06 | 1 | -1/+4 |
|
|
* | Of course, I shouldn't have used lseek() to find out the file's | Guido van Rossum | 1998-03-03 | 1 | -6/+3 |
|
|
* | Add back some safeguards on the index elements that were lost in the | Guido van Rossum | 1998-02-25 | 1 | -2/+2 |
|
|
* | Add internal routine _PyModule_Clear(), which does approximately what | Guido van Rossum | 1998-02-19 | 1 | -1/+50 |
|
|
* | Vladimir Marangozov' performance hack: copy f_builtins from ancestor | Guido van Rossum | 1998-02-19 | 1 | -3/+14 |
|
|
* | Check ferror(), not errno, for fread() error. | Guido van Rossum | 1998-02-19 | 1 | -1/+1 |
|
|
* | Instead of "attribute-less object", issue an error message that | Guido van Rossum | 1998-01-19 | 1 | -1/+4 |
|
|
* | Modified quicksort by Raymund Galvin, after studying the GNU libg++ | Guido van Rossum | 1997-12-10 | 1 | -23/+48 |
|
|
* | Change the default repr() and str() of class instance objects to look | Guido van Rossum | 1997-12-03 | 1 | -1/+9 |
|
|
* | Add a new function PyNumber_CoerceEx() which works just like | Guido van Rossum | 1997-11-19 | 1 | -3/+15 |
|
|
* | Undo another glitch of the automatic not-so-Grand Renaming; some local | Guido van Rossum | 1997-11-18 | 1 | -10/+10 |
|
|
* | Fix problem discovered by Barry: if you hit ^C to | Guido van Rossum | 1997-11-07 | 1 | -2/+2 |
|
|