| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove a redundant check from list_slice() and list_ass_slice(). | Guido van Rossum | 1998-10-07 | 1 | -4/+0 |
|
|
* | Slight rearrangement of code in lookdict() by Vladimir Marangozov, to | Guido van Rossum | 1998-10-06 | 1 | -4/+3 |
|
|
* | Believe it or not, Solaris 2.6 strtod() can move the end pointer | Guido van Rossum | 1998-10-01 | 1 | -1/+6 |
|
|
* | Typo reported by Greg Stein: "modifiable" is the correct spelling. | Guido van Rossum | 1998-10-01 | 1 | -1/+1 |
|
|
* | In PyFrame_New(), don't set extras to something derived from code | Guido van Rossum | 1998-09-25 | 1 | -1/+2 |
|
|
* | Patches from Greg Stein to support 'P' format in struct module's | Guido van Rossum | 1998-09-18 | 1 | -0/+55 |
|
|
* | Undo victim of careless global substitute ("long long_hash" was | Guido van Rossum | 1998-09-13 | 1 | -1/+1 |
|
|
* | Patch by Mark Hammond to support 64-bit ints on MS platforms. | Guido van Rossum | 1998-08-25 | 1 | -22/+22 |
|
|
* | Better error messages when a sequence is indexed with a non-integer. | Guido van Rossum | 1998-08-13 | 1 | -6/+17 |
|
|
* | Two patches by Jason Harper: | Guido van Rossum | 1998-08-11 | 1 | -37/+96 |
|
|
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 1 | -0/+192 |
|
|
* | Fix a potential problem in PyLong_FromString(): could fall through the | Guido van Rossum | 1998-08-04 | 1 | -0/+2 |
|
|
* | Better error messages when raising ValueError for int and long | Guido van Rossum | 1998-08-04 | 1 | -6/+9 |
|
|
* | Fix a memory leak -- the cached values of __getattr__ etc. were never | Guido van Rossum | 1998-08-04 | 1 | -0/+3 |
|
|
* | PyFile_FromString(): If an exception occurs, pass in the filename that | Barry Warsaw | 1998-07-23 | 1 | -1/+2 |
|
|
* | When comparing objects, always check that tp_compare is not NULL | Guido van Rossum | 1998-07-21 | 1 | -3/+7 |
|
|
* | Avoid using calloc(). This triggered an obscure bug on multiprocessor | Guido van Rossum | 1998-07-16 | 1 | -1/+2 |
|
|
* | Add special case to PySequence_List() so that list() of a list is | Guido van Rossum | 1998-07-10 | 1 | -0/+6 |
|
|
* | Changed PySequence_List() and PySequence_Tuple() to support | Guido van Rossum | 1998-07-10 | 1 | -27/+38 |
|
|
* | Move the definition of PyMethodObject to classobject.h, so it can define | Guido van Rossum | 1998-07-10 | 1 | -8/+0 |
|
|
* | Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObject | Guido van Rossum | 1998-07-10 | 1 | -6/+0 |
|
|
* | Marc-Andre Lemburg's patch to support instance methods with other | Guido van Rossum | 1998-07-08 | 1 | -16/+21 |
|
|
* | Recompute the special getattr/setattr/delattr cache slots after | Guido van Rossum | 1998-07-08 | 1 | -7/+13 |
|
|
* | Added doc strings for methods and a new pop() method. | Guido van Rossum | 1998-06-30 | 1 | -7/+54 |
|
|
* | New feature: if the object's type has a non-NULL tp_doc field, that | Guido van Rossum | 1998-06-27 | 1 | -2/+9 |
|
|
* | Slight rearrangement of some code to make it faster, by Vladimir | Guido van Rossum | 1998-06-26 | 1 | -9/+15 |
|
|
* | Add check in long-to-int conversion for at least one digit. | Guido van Rossum | 1998-06-22 | 1 | -0/+7 |
|
|
* | Fix the tests for various anomalies in the string-to-numbers | Guido van Rossum | 1998-06-22 | 1 | -12/+8 |
|
|
* | 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 |
|
|