summaryrefslogtreecommitdiff
path: root/Lib/weakref.py
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36492: Fix passing special keyword arguments to some functions. (GH...Serhiy Storchaka2019-04-011-1/+21
* bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) (...Miss Islington (bot)2019-02-071-16/+20
* bpo-30152: Reduce the number of imports for argparse. (#1269)Serhiy Storchaka2017-09-261-3/+3
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-3/+3
* Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-101-2/+2
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-4/+30
* Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDicti...Antoine Pitrou2016-12-191-5/+8
* Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-2/+15
|\
| * Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-2/+15
* | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with...Antoine Pitrou2014-10-051-0/+13
|\ \ | |/
| * Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with...Antoine Pitrou2014-10-051-0/+13
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-2/+2
* | Issue #22031: Reprs now always use hexadecimal format with the "0x" prefixSerhiy Storchaka2014-07-221-2/+2
|/
* Issue #15528: Delay importing atexit until weakref.finalize() used.Richard Oudkerk2013-06-081-3/+7
* Issue #15528: Add weakref.finalize to support finalization usingRichard Oudkerk2013-05-051-1/+136
* Backout 2e446e87ac5b; it breaks the unix buildbots.Richard Oudkerk2013-05-051-136/+1
* Issue #15528: Add weakref.finalize to support finalization usingRichard Oudkerk2013-05-051-1/+136
* Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak referenc...Antoine Pitrou2012-11-171-1/+55
* utilize yield fromPhilip Jenvey2012-10-011-2/+1
* Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, W...Antoine Pitrou2012-03-011-2/+2
* Use booleans.Georg Brandl2010-12-031-3/+3
* Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust againstAntoine Pitrou2010-01-081-49/+85
* Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty...Antoine Pitrou2009-05-301-1/+1
* Merged revisions 72669 via svnmerge fromAntoine Pitrou2009-05-151-0/+22
* Fix a circular import dependency.Brett Cannon2009-03-251-2/+2
* Committing the patch in issue 2965, so that weakref dicts have a closerBarry Warsaw2008-09-041-30/+6
* ReferenceError is undefined. causes test___all__.py to fail. remove it from...Gregory P. Smith2008-08-181-1/+1
* Merged revisions 65795 via svnmerge fromBrett Cannon2008-08-181-1/+1
* 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