| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #1462488: prevent a segfault in object_reduce_ex() by splitting | Žiga Seilnacht | 2007-03-15 | 1 | -14/+47 |
|
|
* | Patch #1680015: Don't modify __slots__ tuple if it contains an unicode | Žiga Seilnacht | 2007-03-14 | 1 | -16/+20 |
|
|
* | Patch #1675981: remove unreachable code from type.__new__() method. | Žiga Seilnacht | 2007-03-11 | 1 | -7/+5 |
|
|
* | Bug #1653736: Properly discard third argument to slot_nb_inplace_power. | Martin v. Löwis | 2007-02-09 | 1 | -1/+7 |
|
|
* | If you created a weakref in an object's __del__ method to itself it would | Brett Cannon | 2007-01-23 | 1 | -0/+11 |
|
|
* | Forward-port of r52136: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -13/+4 |
|
|
* | Patch #1567691: super() and new.instancemethod() now don't accept | Georg Brandl | 2006-09-30 | 1 | -0/+2 |
|
|
* | Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots | Neal Norwitz | 2006-08-12 | 1 | -5/+3 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -20/+5 |
|
|
* | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 1 | -1/+1 |
|
|
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 1 | -1/+4 |
|
|
* | SF patch #1534048 (bug #1531003): fix typo in error message | Fred Drake | 2006-08-04 | 1 | -1/+1 |
|
|
* | Handle allocation failures gracefully. Found with failmalloc. | Neal Norwitz | 2006-07-21 | 1 | -0/+2 |
|
|
* | Fix refleak | Neal Norwitz | 2006-06-23 | 1 | -1/+3 |
|
|
* | Fix for an obscure bug introduced by revs 46806 and 46808, with a test. | Armin Rigo | 2006-06-21 | 1 | -0/+9 |
|
|
* | Patch #1507676: improve exception messages in abstract.c, object.c and typeob... | Georg Brandl | 2006-06-18 | 1 | -13/+20 |
|
|
* | Replace PyObject_CallFunction calls with only object args | Georg Brandl | 2006-05-25 | 1 | -5/+5 |
|
|
* | Fix variable/format-char discrepancy in new-style class __getitem__, | Thomas Wouters | 2006-04-21 | 1 | -4/+4 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 1 | -6/+6 |
|
|
* | Remove now-unused variables from tp_traverse and tp_clear methods. | Tim Peters | 2006-04-15 | 1 | -2/+0 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 1 | -39/+12 |
|
|
* | Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for | Thomas Wouters | 2006-04-15 | 1 | -11/+2 |
|
|
* | Correct casts to char*. | Martin v. Löwis | 2006-04-11 | 1 | -4/+4 |
|
|
* | More low-hanging fruit. Still need to re-arrange some code (or find a better | Anthony Baxter | 2006-04-11 | 1 | -33/+33 |
|
|
* | Minor bugs in the __index__ code (PEP 357), with tests. | Armin Rigo | 2006-03-30 | 1 | -32/+21 |
|
|
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -1/+1 |
|
|
* | Fix some missing checks after PyTuple_New, PyList_New, PyDict_New | Georg Brandl | 2006-03-17 | 1 | -1/+4 |
|
|
* | Fix three nits found by Coverity, adding null checks and comments. | Guido van Rossum | 2006-03-10 | 1 | -3/+15 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+43 |
|
|
* | Change int to Py_ssize_t in several places. | Martin v. Löwis | 2006-03-07 | 1 | -2/+3 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Bug #1086854: Rename PyHeapType members adding ht_ prefix. | Georg Brandl | 2006-02-20 | 1 | -9/+9 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -8/+9 |
|
|
* | Support %zd in PyErr_Format and PyString_FromFormat. | Martin v. Löwis | 2006-02-16 | 1 | -2/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -77/+87 |
|
|
* | Fix ref/memory leak introduced in rev 41845. | Neal Norwitz | 2006-01-02 | 1 | -0/+2 |
|
|
* | SF bug #1153075: "PyXxx_Check(x) trusts x->ob_type->tp_mro". | Armin Rigo | 2005-12-29 | 1 | -0/+33 |
|
|
* | SF patch #1390657: | Armin Rigo | 2005-12-29 | 1 | -16/+15 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -6/+10 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -9/+3 |
|
|
* | (pedronis, arigo) | Armin Rigo | 2005-09-24 | 1 | -1/+1 |
|
|
* | - On 64-bit platforms, when __len__() returns a value that cannot be | Guido van Rossum | 2005-09-20 | 1 | -1/+11 |
|
|
* | fix object.__divmod__.__doc__ | Anthony Baxter | 2005-06-03 | 1 | -2/+8 |
|
|
* | Fixed a quite misleading comment: a "not" should not have been there. | Armin Rigo | 2005-05-15 | 1 | -1/+1 |
|
|
* | SF bug #1155938: Missing None check for __init__(). | Raymond Hettinger | 2005-03-03 | 1 | -0/+6 |
|
|
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 1 | -4/+1 |
|
|
* | Patch #980082: Missing INCREF in PyType_Ready. | Martin v. Löwis | 2004-08-18 | 1 | -1/+3 |
|
|
* | Repair the same thinko in two places about handling of _Py_RefTotal in | Michael W. Hudson | 2004-08-03 | 1 | -4/+5 |
|
|
* | Cosmetic spacing fix. | Raymond Hettinger | 2004-06-25 | 1 | -1/+1 |
|
|
* | Fix leak found by Eric Huss. | Raymond Hettinger | 2004-06-25 | 1 | -1/+6 |
|
|