| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | 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 |
|
|