| Commit message (Expand) | Author | Age | Files | Lines |
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -1/+1 |
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -1/+3 |
* | There were no comments explaining what Py_CLEAR() did or | Tim Peters | 2006-04-15 | 1 | -0/+34 |
* | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 1 | -0/+3 |
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -1/+8 |
* | Use Py_ssize_t for _Py_RefTotal. | Neal Norwitz | 2006-03-04 | 1 | -1/+1 |
* | Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. | Martin v. Löwis | 2006-03-01 | 1 | -4/+4 |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -4/+4 |
* | Bug #1086854: Rename PyHeapType members adding ht_ prefix. | Georg Brandl | 2006-02-20 | 1 | -3/+3 |
* | Use Py_ssize_t for field sizes and offsets. | Martin v. Löwis | 2006-02-16 | 1 | -3/+3 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -17/+31 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -7/+7 |
* | Change the %s format specifier for str objects so that it returns a | Neil Schemenauer | 2005-08-12 | 1 | -0/+1 |
* | A static swapped_op[] array was defined in 3 different C files, & I think | Tim Peters | 2004-09-23 | 1 | -0/+5 |
* | SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes | Raymond Hettinger | 2004-09-01 | 1 | -1/+1 |
* | SF bug 994255: Py_RETURN_NONE causes too much warnings | Tim Peters | 2004-07-22 | 1 | -1/+1 |
* | Implemented a new Py_CLEAR macro. This macro should be used when | Jim Fulton | 2004-07-14 | 1 | -0/+9 |
* | Two new public API functions, Py_IncRef and Py_DecRef. Useful for | Thomas Heller | 2004-04-22 | 1 | -0/+7 |
* | fixed buggy comment as per SF bug #827856 | Alex Martelli | 2003-11-09 | 1 | -7/+7 |
* | Modify the Py_RETURN_* macros to be of the form ``do {...} while (0)`` in order | Brett Cannon | 2003-10-19 | 1 | -1/+1 |
* | Modified the Py_RETURN_* macros by having the statements surrounded by {} in | Brett Cannon | 2003-10-19 | 1 | -1/+1 |
* | Defined macros Py_RETURN_(TRUE|FALSE|NONE) as helper functions for returning | Brett Cannon | 2003-10-19 | 1 | -0/+3 |
* | After Raymond's remark, I changed the Stackless bits to | Christian Tismer | 2003-05-23 | 1 | -2/+2 |
* | Generalized my type flags structure extension without being specific about | Christian Tismer | 2003-05-23 | 1 | -4/+4 |
* | Preserved one bit in type objects for Stackless. | Christian Tismer | 2003-05-20 | 1 | -0/+8 |
* | _Py_PrintReferences(): Changed to print object address at start of each | Tim Peters | 2003-04-17 | 1 | -0/+1 |
* | Improved new Py_TRACE_REFS gimmicks. | Tim Peters | 2003-03-23 | 1 | -1/+1 |
* | Refactored some of the Py_TRACE_REFS code. New private API function | Tim Peters | 2003-03-23 | 1 | -0/+1 |
* | Renamed PyObject_GenericGetIter to PyObject_SelfIter | Raymond Hettinger | 2003-03-17 | 1 | -1/+1 |
* | Created PyObject_GenericGetIter(). | Raymond Hettinger | 2003-03-17 | 1 | -0/+1 |
* | - The extended type structure used for heap types (new-style | Guido van Rossum | 2003-03-07 | 1 | -0/+22 |
* | Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes | Neil Schemenauer | 2002-11-17 | 1 | -1/+0 |
* | A modest speedup of object deallocation. call_finalizer() did rather | Guido van Rossum | 2002-08-08 | 1 | -0/+1 |
* | Added info about the right way to leave the body of a trashcan-protected | Tim Peters | 2002-08-07 | 1 | -0/+5 |
* | Excise DL_IMPORT/EXPORT from object.h, and related files. This patch | Mark Hammond | 2002-07-29 | 1 | -51/+51 |
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -18/+9 |
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 1 | -60/+40 |
* | Uglified the new Py_REF_DEBUG (etc) lexical helper macro definitions so | Tim Peters | 2002-07-10 | 1 | -21/+25 |
* | The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added | Tim Peters | 2002-07-09 | 1 | -27/+35 |
* | Rearranged and added comments to object.h, to clarify many things | Tim Peters | 2002-07-07 | 1 | -74/+120 |
* | Trashcan cleanup: Now that cyclic gc is always there, the trashcan | Tim Peters | 2002-07-07 | 1 | -50/+53 |
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 1 | -4/+0 |
* | Change the type of the tp_free from 'destructor' to 'freefunc'. | Neil Schemenauer | 2002-04-12 | 1 | -1/+2 |
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -2/+2 |
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -1/+1 |
* | SF bug #475327: type() produces incorrect error msg | Tim Peters | 2001-10-27 | 1 | -0/+1 |
* | Get rid of __defined__ and tp_defined -- there's no need to | Guido van Rossum | 2001-10-15 | 1 | -1/+1 |
* | Completely get rid of __dynamic__ and the corresponding | Guido van Rossum | 2001-10-15 | 1 | -3/+0 |
* | Keep track of a type's subclasses (subtypes), in tp_subclasses, which | Guido van Rossum | 2001-10-08 | 1 | -0/+2 |
* | PyObject_ClearWeakRefs() is now a real function instead of a function pointer; | Fred Drake | 2001-10-05 | 1 | -1/+1 |