| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15528: Delay importing atexit until weakref.finalize() used. | Richard Oudkerk | 2013-06-08 | 1 | -3/+7 |
|
|
* | Issue #15528: Add weakref.finalize to support finalization using | Richard Oudkerk | 2013-05-05 | 1 | -1/+136 |
|
|
* | Backout 2e446e87ac5b; it breaks the unix buildbots. | Richard Oudkerk | 2013-05-05 | 1 | -136/+1 |
|
|
* | Issue #15528: Add weakref.finalize to support finalization using | Richard Oudkerk | 2013-05-05 | 1 | -1/+136 |
|
|
* | Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak referenc... | Antoine Pitrou | 2012-11-17 | 1 | -1/+55 |
|
|
* | utilize yield from | Philip Jenvey | 2012-10-01 | 1 | -2/+1 |
|
|
* | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, W... | Antoine Pitrou | 2012-03-01 | 1 | -2/+2 |
|
|
* | Use booleans. | Georg Brandl | 2010-12-03 | 1 | -3/+3 |
|
|
* | Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against | Antoine Pitrou | 2010-01-08 | 1 | -49/+85 |
|
|
* | Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty... | Antoine Pitrou | 2009-05-30 | 1 | -1/+1 |
|
|
* | Merged revisions 72669 via svnmerge from | Antoine Pitrou | 2009-05-15 | 1 | -0/+22 |
|
|
* | Fix a circular import dependency. | Brett Cannon | 2009-03-25 | 1 | -2/+2 |
|
|
* | Committing the patch in issue 2965, so that weakref dicts have a closer | Barry Warsaw | 2008-09-04 | 1 | -30/+6 |
|
|
* | ReferenceError is undefined. causes test___all__.py to fail. remove it from... | Gregory P. Smith | 2008-08-18 | 1 | -1/+1 |
|
|
* | Merged revisions 65795 via svnmerge from | Brett Cannon | 2008-08-18 | 1 | -1/+1 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 1 | -1/+1 |
|
|
* | No need to register classes that already inherit from ABCs. | Raymond Hettinger | 2008-02-11 | 1 | -3/+0 |
|
|
* | Decouple weakref containers from UserDict | Raymond Hettinger | 2008-02-05 | 1 | -4/+17 |
|
|
* | Moved WeakSet into a bootstap module use by abc.py. | Raymond Hettinger | 2008-02-05 | 1 | -106/+3 |
|
|
* | #1061 (mainly by Thomas Wouters): use weak sets for abc caches. | Georg Brandl | 2007-10-23 | 1 | -0/+105 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -2/+2 |
|
|
* | Merged revisions 55817-55961 via svnmerge from | Guido van Rossum | 2007-06-13 | 1 | -1/+1 |
|
|
* | Remove the exceptions builtin module, all the exceptions are already builtin. | Neal Norwitz | 2007-02-26 | 1 | -2/+0 |
|
|
* | Nailed test_weakref.py. Pfew, messy! | Guido van Rossum | 2007-02-11 | 1 | -4/+4 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -10/+10 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -14/+0 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -0/+48 |
|
|
* | Bug #1196315: fix weakref.WeakValueDictionary constructor. | Georg Brandl | 2005-06-04 | 1 | -1/+1 |
|
|
* | Use multi-line import | Andrew M. Kuchling | 2004-08-31 | 1 | -8/+8 |
|
|
* | SF bug #1012315: weakref.WeakValueDictionary should override .has_key() | Raymond Hettinger | 2004-08-19 | 1 | -31/+36 |
|
|
* | Convert weak iterators to generator form. | Raymond Hettinger | 2004-08-13 | 1 | -51/+23 |
|
|
* | Make weak references subclassable: | Fred Drake | 2004-07-02 | 1 | -16/+34 |
|
|
* | The default argument in dict.setdefault() defaults to None. | Walter Dörwald | 2004-05-27 | 1 | -2/+2 |
|
|
* | SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ | Raymond Hettinger | 2004-03-04 | 1 | -6/+16 |
|
|
* | SF 742860: WeakKeyDictionary __delitem__ uses iterkeys | Tim Peters | 2003-05-25 | 1 | -5/+1 |
|
|
* | SF patch #667730: More DictMixin | Raymond Hettinger | 2003-03-09 | 1 | -0/+15 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-07-16 | 1 | -1/+1 |
|
|
* | SF patch 564549 (Erik Andersén). | Guido van Rossum | 2002-06-10 | 1 | -1/+1 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+8 |
|
|
* | WeakKeyDictionary.has_key(): If the key being tested is not weakly | Fred Drake | 2001-11-06 | 1 | -1/+5 |
|
|
* | ReferenceError is now built-in, so pick it up from the right place. | Fred Drake | 2001-10-05 | 1 | -1/+3 |
|
|
* | Clean up circular references in the Weak*Dictionary classes; this avoids | Fred Drake | 2001-09-28 | 1 | -11/+14 |
|
|
* | Add __delitem__() support for WeakKeyDictionary. | Fred Drake | 2001-09-06 | 1 | -0/+7 |
|
|
* | Make sure that WeakValueDictionary[] raises KeyError instead of TypeError | Fred Drake | 2001-08-03 | 1 | -1/+1 |
|
|
* | Added iterator support to the Weak*Dictionary classes. | Fred Drake | 2001-05-02 | 1 | -0/+73 |
|
|
* | Weak*Dictionary: Added docstrings to the classes. | Fred Drake | 2001-04-19 | 1 | -24/+36 |
|
|
* | Weak*Dictionary.update(): Fix calls to [].append() to only have one | Fred Drake | 2001-04-16 | 1 | -4/+15 |
|
|
* | mapping(): Remove this function since it does not add anything to the API. | Fred Drake | 2001-04-10 | 1 | -8/+1 |
|
|
* | final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be | Skip Montanaro | 2001-03-01 | 1 | -0/+3 |
|
|
* | Change WeakDictionary to WeakValueDictionary in a couple more places. | Fred Drake | 2001-03-01 | 1 | -4/+7 |
|
|