aboutsummaryrefslogtreecommitdiff
path: root/Modules/_weakref.c
AgeCommit message (Expand)Author
2017-11-28bpo-32150: Expand tabs to spaces in C files. (#4583)Serhiy Storchaka
2016-12-27Issue #28427: old keys should not remove new values fromAntoine Pitrou
2016-07-07Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2015-04-03Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka
2014-02-08Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings
2014-01-28Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings
2014-01-24Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings
2014-01-17Issue #20287: Argument Clinic's output is now configurable, allowingLarry Hastings
2014-01-07Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings
2013-11-23Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings
2013-11-23Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings
2013-11-18Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings
2013-10-19Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2007-07-21Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis
2006-08-11Merged revisions 46753-51188 via svnmerge fromThomas Wouters
2004-07-02Make weak references subclassable:Fred Drake
2002-08-02Fix ref(), proxy() docstrings, based on comments from David Abrahams.Fred Drake
2002-08-02Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond
2002-06-13Patch #568124: Add doc string macros.Martin v. Löwis
2001-10-23Convert the ref() and proxy() implementations to use the newFred Drake
2001-10-05Adjust the _weakref module to use the public API for the weak referenceFred Drake
2001-08-29Use new GC API.Neil Schemenauer
2001-08-16Use METH_O where possible (two functions). This does not lead to realFred Drake
2001-05-03Remove an obsolete comment and a "return" before fallig off the end of aFred Drake
2001-04-13cleanup_helper(): Make sure we invalidate all reference objectsFred Drake
2001-03-23Revert the 1.8 patch, since it's implicated in nasty blowups (see Pyhon-Dev).Tim Peters
2001-03-22Inform the cycle-detector that the a weakref object no longer needs to beFred Drake
2001-02-27Patch #403985: Add support for weak-keyed dictionariesMartin v. Löwis
2001-02-26cleanup_helper(): Added missing "void" type for the function, updatedFred Drake
2001-02-26The return value from PyObject_ClearWeakRefs() is no longer meaningful,Fred Drake
2001-02-18Move docstrings out of function table to constants defined near theFred Drake
2001-02-02Repair legit compiler warning.Tim Peters
2001-02-02Teach Windows build about the _weakref module.Tim Peters
2001-02-01PEP 205, Weak References -- initial checkin.Fred Drake