summaryrefslogtreecommitdiff
path: root/Objects/weakrefobject.c
Commit message (Expand)AuthorAgeFilesLines
...
* Support unicode namesNeal Norwitz2007-08-251-2/+2
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-18/+15
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-2/+2
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-0/+3
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-2/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-10/+12
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-2/+2
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-5/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-44/+43
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-4/+0
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-1/+8
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-9/+9
* Remove some shadowed variablesNeal Norwitz2006-01-081-2/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior.Raymond Hettinger2005-03-271-5/+1
* SF 1055820: weakref callback vs gc vs threadsTim Peters2004-10-301-1/+3
* 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