| Commit message (Expand) | Author | Age | Files | Lines |
* | Changes for PEP 208. PyObject_Compare has been rewritten. Instances no | Neil Schemenauer | 2001-01-04 | 1 | -118/+139 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -2/+2 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -3/+0 |
|
|
* | As suggested by Toby Dickenson, setting ob_type to NULL in | Guido van Rossum | 2000-09-21 | 1 | -4/+0 |
|
|
* | PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode | Marc-André Lemburg | 2000-09-18 | 1 | -11/+37 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | PyOS_CheckStack() returns 1 when failing, not -1. | Guido van Rossum | 2000-08-30 | 1 | -1/+1 |
|
|
* | Added PyOS_CheckStack call to PyObject_Compare | Jack Jansen | 2000-08-22 | 1 | -0/+13 |
|
|
* | make_pair(): When comparing the pointers, they must be cast to integer | Barry Warsaw | 2000-08-18 | 1 | -2/+6 |
|
|
* | Updated comment | Andrew M. Kuchling | 2000-08-16 | 1 | -1/+1 |
|
|
* | Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. | Tim Peters | 2000-08-15 | 1 | -15/+55 |
|
|
* | Fix missing decrements of the recursive counter in PyObject_Compare(). | Vladimir Marangozov | 2000-08-11 | 1 | -6/+12 |
|
|
* | Removing warnings found by gcc -Wall | Moshe Zadka | 2000-08-04 | 1 | -0/+4 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -2/+0 |
|
|
* | Use 'void' directly instead of the ANY #define, now that all code is ANSI C. | Thomas Wouters | 2000-07-25 | 1 | -8/+8 |
|
|
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
|
|
* | Propagate the current exception in get_inprogress_dict() -- it doesn't | Vladimir Marangozov | 2000-07-12 | 1 | -1/+0 |
|
|
* | change abstract size functions PySequence_Size &c. | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
|
|
* | Include macglue.h on the macintosh, so function prototypes are in scope. | Jack Jansen | 2000-07-11 | 1 | -0/+4 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -105/+46 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -1/+1 |
|
|
* | - changed __repr__ to use "unicode escape" encoding for unicode | Fredrik Lundh | 2000-07-08 | 1 | -1/+1 |
|
|
* | delete unused local variable from _PyTrash_deposit_object | Skip Montanaro | 2000-07-08 | 1 | -1/+0 |
|
|
* | If auto-conversion fails, the Unicode codecs will return NULL. | Marc-André Lemburg | 2000-07-03 | 1 | -11/+13 |
|
|
* | changed repr and str to always convert unicode strings | Fredrik Lundh | 2000-07-01 | 1 | -0/+16 |
|
|
* | Neil Schemenauer: small fixes for GC | Guido van Rossum | 2000-07-01 | 1 | -7/+4 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick <trentm@activestate.com>: | Fred Drake | 2000-06-30 | 1 | -6/+6 |
|
|
* | final patches from Neil Schemenauer for garbage collection | Jeremy Hylton | 2000-06-30 | 1 | -1/+33 |
|
|
* | This patch addresses two main issues: (1) There exist some non-fatal | Fred Drake | 2000-06-29 | 1 | -2/+61 |
|
|
* | Trent Mick: change a few casts for Win64 compatibility. | Guido van Rossum | 2000-06-28 | 1 | -1/+1 |
|
|
* | raise TypeError when PyObject_Get/SetAttr called with non-string name | Jeremy Hylton | 2000-06-23 | 1 | -5/+17 |
|
|
* | the PyDict_SetItem does not borrow a reference, so we need to decref | Jeremy Hylton | 2000-06-09 | 1 | -0/+1 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -64/+60 |
|
|
* | Christian Tismer -- total rewrite on trashcan code. | Guido van Rossum | 2000-04-24 | 1 | -15/+61 |
|
|
* | Fix PR#7 comparisons of recursive objects | Jeremy Hylton | 2000-04-14 | 1 | -3/+112 |
|
|
* | Marc-Andre Lemburg: | Guido van Rossum | 2000-04-10 | 1 | -2/+15 |
|
|
* | Skip Montanaro: add string precisions to calls to PyErr_Format | Guido van Rossum | 2000-04-10 | 1 | -2/+2 |
|
|
* | Christian Tismer: | Guido van Rossum | 2000-03-25 | 1 | -2/+8 |
|
|
* | Christian Tismer's "trashcan" patch: | Guido van Rossum | 2000-03-13 | 1 | -0/+45 |
|
|
* | Many changes for Unicode, by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 1 | -11/+30 |
|
|
* | The rest of the changes by Trent Mick and Dale Nagata for warning-free | Guido van Rossum | 2000-01-20 | 1 | -2/+4 |
|
|
* | On Linux, one sometimes sees spurious errors after interrupting | Guido van Rossum | 2000-01-12 | 1 | -0/+1 |
|
|
* | When comparing objects, always check that tp_compare is not NULL | Guido van Rossum | 1998-07-21 | 1 | -3/+7 |
|
|
* | When comparing objects of different types (which is done by comparing | Guido van Rossum | 1998-06-09 | 1 | -8/+15 |
|
|
* | In PyObject_IsTrue(), don't call function pointers that are NULL | Guido van Rossum | 1998-05-22 | 1 | -3/+6 |
|
|
* | If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str | Guido van Rossum | 1998-04-28 | 1 | -0/+12 |
|
|
* | 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 |
|
|