summaryrefslogtreecommitdiffstats
path: root/Lib/weakref.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-1/+1
* No need to register classes that already inherit from ABCs.Raymond Hettinger2008-02-111-3/+0
* Decouple weakref containers from UserDictRaymond Hettinger2008-02-051-4/+17
* Moved WeakSet into a bootstap module use by abc.py.Raymond Hettinger2008-02-051-106/+3
* #1061 (mainly by Thomas Wouters): use weak sets for abc caches.Georg Brandl2007-10-231-0/+105
* Raise statement normalization in Lib/.Collin Winter2007-08-301-2/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-1/+1
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-261-2/+0
* Nailed test_weakref.py. Pfew, messy!Guido van Rossum2007-02-111-4/+4
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-10/+10
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-181-14/+0
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-0/+48
* Bug #1196315: fix weakref.WeakValueDictionary constructor.Georg Brandl2005-06-041-1/+1
* Use multi-line importAndrew M. Kuchling2004-08-311-8/+8
* SF bug #1012315: weakref.WeakValueDictionary should override .has_key()Raymond Hettinger2004-08-191-31/+36
* Convert weak iterators to generator form.Raymond Hettinger2004-08-131-51/+23
* Make weak references subclassable:Fred Drake2004-07-021-16/+34
* The default argument in dict.setdefault() defaults to None.Walter Dörwald2004-05-271-2/+2
* SF #904720: dict.update should take a 2-tuple sequence like dict.__init_Raymond Hettinger2004-03-041-6/+16
* SF 742860: WeakKeyDictionary __delitem__ uses iterkeysTim Peters2003-05-251-5/+1
* SF patch #667730: More DictMixinRaymond Hettinger2003-03-091-0/+15
* Whitespace normalization.Tim Peters2002-07-161-1/+1
* SF patch 564549 (Erik Andersén).Guido van Rossum2002-06-101-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+8
* WeakKeyDictionary.has_key(): If the key being tested is not weaklyFred Drake2001-11-061-1/+5
* ReferenceError is now built-in, so pick it up from the right place.Fred Drake2001-10-051-1/+3
* Clean up circular references in the Weak*Dictionary classes; this avoidsFred Drake2001-09-281-11/+14
* Add __delitem__() support for WeakKeyDictionary.Fred Drake2001-09-061-0/+7
* Make sure that WeakValueDictionary[] raises KeyError instead of TypeErrorFred Drake2001-08-031-1/+1
* Added iterator support to the Weak*Dictionary classes.Fred Drake2001-05-021-0/+73
* Weak*Dictionary: Added docstrings to the classes.Fred Drake2001-04-191-24/+36
* Weak*Dictionary.update(): Fix calls to [].append() to only have oneFred Drake2001-04-161-4/+15
* mapping(): Remove this function since it does not add anything to the API.Fred Drake2001-04-101-8/+1
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+3
* Change WeakDictionary to WeakValueDictionary in a couple more places.Fred Drake2001-03-011-4/+7
* Patch #403985: Add support for weak-keyed dictionariesMartin v. Löwis2001-02-271-3/+60
* Ouch! I need a better test suite for this. ;-(Fred Drake2001-02-021-1/+0
* WeakDictionary.items(): Do not allow (key,ref) pairs to leak out forFred Drake2001-02-021-3/+3
* PEP 205, Weak References -- initial checkin.Fred Drake2001-02-011-0/+117