summaryrefslogtreecommitdiff
path: root/Modules/_weakref.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-0/+39
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-2/+2
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-2/+2
* _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.Neal Norwitz2006-08-021-3/+3
* Make weak references subclassable:Fred Drake2004-07-021-22/+3
* Fix ref(), proxy() docstrings, based on comments from David Abrahams.Fred Drake2002-08-021-3/+4
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-8/+8
* Convert the ref() and proxy() implementations to use the newFred Drake2001-10-231-2/+2
* Adjust the _weakref module to use the public API for the weak referenceFred Drake2001-10-051-717/+15
* Use new GC API.Neil Schemenauer2001-08-291-10/+10
* Use METH_O where possible (two functions). This does not lead to realFred Drake2001-08-161-29/+24
* Remove an obsolete comment and a "return" before fallig off the end of aFred Drake2001-05-031-2/+0
* cleanup_helper(): Make sure we invalidate all reference objectsFred Drake2001-04-131-6/+41
* Revert the 1.8 patch, since it's implicated in nasty blowups (see Pyhon-Dev).Tim Peters2001-03-231-1/+1
* Inform the cycle-detector that the a weakref object no longer needs to beFred Drake2001-03-221-1/+1
* Patch #403985: Add support for weak-keyed dictionariesMartin v. Löwis2001-02-271-2/+40
* cleanup_helper(): Added missing "void" type for the function, updatedFred Drake2001-02-261-6/+3
* The return value from PyObject_ClearWeakRefs() is no longer meaningful,Fred Drake2001-02-261-3/+3
* Move docstrings out of function table to constants defined near theFred Drake2001-02-181-11/+23
* Repair legit compiler warning.Tim Peters2001-02-021-1/+1
* Teach Windows build about the _weakref module.Tim Peters2001-02-021-1/+1
* PEP 205, Weak References -- initial checkin.Fred Drake2001-02-011-0/+757