aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/weakref.py
Commit message (Expand)AuthorAge
* Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust againstAntoine Pitrou2010-01-08
* Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty...Antoine Pitrou2009-05-30
* Merged revisions 72669 via svnmerge fromAntoine Pitrou2009-05-15
* Fix a circular import dependency.Brett Cannon2009-03-25
* Committing the patch in issue 2965, so that weakref dicts have a closerBarry Warsaw2008-09-04
* ReferenceError is undefined. causes test___all__.py to fail. remove it from...Gregory P. Smith2008-08-18
* Merged revisions 65795 via svnmerge fromBrett Cannon2008-08-18
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-04
* No need to register classes that already inherit from ABCs.Raymond Hettinger2008-02-11
* Decouple weakref containers from UserDictRaymond Hettinger2008-02-05
* Moved WeakSet into a bootstap module use by abc.py.Raymond Hettinger2008-02-05
* #1061 (mainly by Thomas Wouters): use weak sets for abc caches.Georg Brandl2007-10-23
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-13
* Remove the exceptions builtin module, all the exceptions are already builtin.Neal Norwitz2007-02-26
* Nailed test_weakref.py. Pfew, messy!Guido van Rossum2007-02-11
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-11
* Get rid of dict.has_key(). Boy this has a lot of repercussions!Guido van Rossum2006-08-18
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-27
* Bug #1196315: fix weakref.WeakValueDictionary constructor.Georg Brandl2005-06-04
* Use multi-line importAndrew M. Kuchling2004-08-31
* SF bug #1012315: weakref.WeakValueDictionary should override .has_key()Raymond Hettinger2004-08-19
* Convert weak iterators to generator form.Raymond Hettinger2004-08-13
* Make weak references subclassable:Fred Drake2004-07-02
* The default argument in dict.setdefault() defaults to None.Walter Dörwald2004-05-27
* SF #904720: dict.update should take a 2-tuple sequence like dict.__init_Raymond Hettinger2004-03-04
* SF 742860: WeakKeyDictionary __delitem__ uses iterkeysTim Peters2003-05-25
* SF patch #667730: More DictMixinRaymond Hettinger2003-03-09
* Whitespace normalization.Tim Peters2002-07-16
* SF patch 564549 (Erik Andersén).Guido van Rossum2002-06-10
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* WeakKeyDictionary.has_key(): If the key being tested is not weaklyFred Drake2001-11-06
* ReferenceError is now built-in, so pick it up from the right place.Fred Drake2001-10-05
* Clean up circular references in the Weak*Dictionary classes; this avoidsFred Drake2001-09-28
* Add __delitem__() support for WeakKeyDictionary.Fred Drake2001-09-06
* Make sure that WeakValueDictionary[] raises KeyError instead of TypeErrorFred Drake2001-08-03
* Added iterator support to the Weak*Dictionary classes.Fred Drake2001-05-02
* Weak*Dictionary: Added docstrings to the classes.Fred Drake2001-04-19
* Weak*Dictionary.update(): Fix calls to [].append() to only have oneFred Drake2001-04-16
* mapping(): Remove this function since it does not add anything to the API.Fred Drake2001-04-10
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-01
* Change WeakDictionary to WeakValueDictionary in a couple more places.Fred Drake2001-03-01
* Patch #403985: Add support for weak-keyed dictionariesMartin v. Löwis2001-02-27
* Ouch! I need a better test suite for this. ;-(Fred Drake2001-02-02
* WeakDictionary.items(): Do not allow (key,ref) pairs to leak out forFred Drake2001-02-02
* PEP 205, Weak References -- initial checkin.Fred Drake2001-02-01