| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch #587889, fix memory leak of tp_doc | Neal Norwitz | 2002-07-30 | 1 | -0/+1 |
|
|
* | Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. | Jeremy Hylton | 2002-07-25 | 1 | -0/+2 |
|
|
* | Complain if __len__() returns < 0, just like classic classes. | Jeremy Hylton | 2002-07-25 | 1 | -0/+5 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -11/+11 |
|
|
* | The object returned by tp_new() may not have a tp_init. | Jeremy Hylton | 2002-07-16 | 1 | -1/+2 |
|
|
* | valid_identifier(): use an unsigned char* so that isalpha() will do | Guido van Rossum | 2002-07-16 | 1 | -2/+2 |
|
|
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 1 | -38/+28 |
|
|
* | Fix SF bug 572567: Memory leak in object comparison. | Raymond Hettinger | 2002-06-24 | 1 | -0/+1 |
|
|
* | SF 569257 -- Name mangle double underscored variable names in __slots__. | Raymond Hettinger | 2002-06-20 | 1 | -1/+21 |
|
|
* | Patch from SF bug 570483 (Tim Northover). | Guido van Rossum | 2002-06-18 | 1 | -0/+5 |
|
|
* | Inexplicably, recurse_down_subclasses() was comparing the object | Guido van Rossum | 2002-06-14 | 1 | -1/+2 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -4/+4 |
|
|
* | Hopefully this addresses the remaining issues of SF bugs 459235 and | Guido van Rossum | 2002-06-13 | 1 | -24/+39 |
|
|
* | Undo the last chunk of the previous patch, putting back a useful | Guido van Rossum | 2002-06-10 | 1 | -1/+3 |
|
|
* | In the recent python-dev thread "Bizarre new test failure", we | Guido van Rossum | 2002-06-10 | 1 | -32/+48 |
|
|
* | Three's a charm: yet another fix for SF bug 551412. Thinking again | Guido van Rossum | 2002-06-10 | 1 | -19/+17 |
|
|
* | Address SF bug 519621: slots weren't traversed by GC. | Guido van Rossum | 2002-06-04 | 1 | -49/+137 |
|
|
* | Address the residual issue with the fix for SF 551412 in | Guido van Rossum | 2002-06-03 | 1 | -1/+11 |
|
|
* | Fix for SF bug 551412. When _PyType_Lookup() is called on a type | Guido van Rossum | 2002-05-24 | 1 | -0/+6 |
|
|
* | Add a safeguard against setting the class to something with a | Guido van Rossum | 2002-05-24 | 1 | -0/+10 |
|
|
* | type_get_doc(): Squash compiler wng about incompatible ptr types. | Tim Peters | 2002-04-18 | 1 | -1/+2 |
|
|
* | SF bug 542984. | Guido van Rossum | 2002-04-18 | 1 | -7/+11 |
|
|
* | SF bug #541883 (Vincent Fiack). | Guido van Rossum | 2002-04-15 | 1 | -0/+5 |
|
|
* | Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. | Neil Schemenauer | 2002-04-12 | 1 | -6/+6 |
|
|
* | - A type can now inherit its metatype from its base type. Previously, | Guido van Rossum | 2002-04-08 | 1 | -6/+6 |
|
|
* | - Changed new-style class instantiation so that when C's __new__ | Guido van Rossum | 2002-04-06 | 1 | -0/+4 |
|
|
* | Don't inherit tp_new! This is a retraction of half of the previous | Guido van Rossum | 2002-04-05 | 1 | -1/+0 |
|
|
* | Inherit tp_new and tp_is_gc. | Guido van Rossum | 2002-04-05 | 1 | -0/+2 |
|
|
* | A much revised version of SF patch 514662, by Naofumi Honda. This | Guido van Rossum | 2002-04-04 | 1 | -99/+128 |
|
|
* | Clarifying code rearrangement and comments by David Abrahams. I've | Guido van Rossum | 2002-04-04 | 1 | -28/+46 |
|
|
* | Fold some long lines. Delete blank initial line. | Guido van Rossum | 2002-04-03 | 1 | -4/+6 |
|
|
* | SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() | Guido van Rossum | 2002-04-02 | 1 | -3/+7 |
|
|
* | Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) | Neal Norwitz | 2002-03-31 | 1 | -1/+1 |
|
|
* | Introduce two new flag bits that can be set in a PyMethodDef method | Fred Drake | 2002-03-28 | 1 | -2/+29 |
|
|
* | SF patch 530070: pydoc regression, from Martin and Guido. | Tim Peters | 2002-03-17 | 1 | -3/+19 |
|
|
* | "Fix" for SF bug #520644: __slots__ are not pickled. | Guido van Rossum | 2002-03-14 | 1 | -1/+37 |
|
|
* | Bugfix candidate. | Guido van Rossum | 2002-03-10 | 1 | -1/+1 |
|
|
* | Allow __doc__ to be of arbitrary type. Patch by James Henstridge, | Martin v. Löwis | 2002-02-18 | 1 | -4/+16 |
|
|
* | - PyType_Ready(): Initialize the ob_type field to &PyType_Type if it's | Guido van Rossum | 2001-12-17 | 1 | -0/+16 |
|
|
* | (Merge into trunk.) | Guido van Rossum | 2001-12-14 | 1 | -1/+3 |
|
|
* | The previous checkin to clear __slots__ variables did a little bit of | Guido van Rossum | 2001-12-06 | 1 | -20/+20 |
|
|
* | Fix SF bug #489581: __slots__ leak. | Guido van Rossum | 2001-12-05 | 1 | -2/+22 |
|
|
* | At the PythonLabs meeting someone mentioned it would make Jim really | Guido van Rossum | 2001-12-05 | 1 | -2/+2 |
|
|
* | Fix SF bug #486144: Uninitialized __slot__ vrbl is None. | Guido van Rossum | 2001-12-04 | 1 | -2/+4 |
|
|
* | Address SF patch #480716 as well as related issues. | Guido van Rossum | 2001-12-03 | 1 | -17/+36 |
|
|
* | Fix for SF bug #485678. | Guido van Rossum | 2001-12-03 | 1 | -1/+1 |
|
|
* | Changing diapers reminded Guido that he wanted to allow for some measure | Tim Peters | 2001-11-14 | 1 | -29/+97 |
|
|
* | Rename "dictionary" (type and constructor) to "dict". | Tim Peters | 2001-10-29 | 1 | -1/+1 |
|
|
* | Add __del__ callbacks. They are too useful to leave out. | Guido van Rossum | 2001-10-29 | 1 | -0/+74 |
|
|
* | When overriding __str__ or __repr__, set the tp_print slot to NULL. | Guido van Rossum | 2001-10-29 | 1 | -0/+2 |
|
|