summaryrefslogtreecommitdiffstats
path: root/Objects/weakrefobject.c
Commit message (Expand)AuthorAgeFilesLines
* Be more careful about maintaining the invariants; it was actuallyFred Drake2004-08-031-3/+25
* SF bug #978308, Spurious errors taking bool of dead proNeal Norwitz2004-07-081-1/+1
* Make weak references subclassable:Fred Drake2004-07-021-68/+180
* Allocating a new weakref object can cause existing weakref objects forFred Drake2004-02-041-3/+16
* Fix bug in interpretation of the "callback" argument in the constructors forFred Drake2004-02-031-1/+5
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-4/+30
* Remove proxy_print(), since that caused an inconsistency betweenFred Drake2003-07-141-10/+2
* Fix SF 762891: "del p[key]" on proxy object raises SystemError()Raymond Hettinger2003-06-301-1/+5
* - The repr() of a weakref object now shows the __name__ attribute ofGuido van Rossum2003-04-161-6/+15
* Add support for the iterator protocol to weakref proxy objects.Fred Drake2002-08-091-38/+64
* Remove weakref free list. This has the side effect of fixing a memoryNeil Schemenauer2002-03-271-26/+11
* proxy_compare(): Make sure that we unwrap both objects being compared ifFred Drake2001-12-191-6/+13
* Make sure that when we invoke callback functions associated with weakFred Drake2001-12-101-20/+24
* weakref_repr(), proxy_repr(): Conversion of sprintf() toBarry Warsaw2001-11-281-8/+11
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-281-1/+1
* Referencable is not a word, so don't use it in an error message <wink>.Jeremy Hylton2001-10-221-2/+2
* Remove an unnecessary check for NULL.Fred Drake2001-10-181-4/+3
* When weakref proxies are involved in binary & ternary slot operations,Fred Drake2001-10-181-15/+28
* The weak reference implementation, separated from the weakref module.Fred Drake2001-10-051-0/+715