| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952) | Serhiy Storchaka | 2019-08-08 | 1 | -2/+2 |
|
|
* | [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) | Serhiy Storchaka | 2019-06-05 | 1 | -28/+1 |
|
|
* | bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) | Serhiy Storchaka | 2019-06-01 | 1 | -23/+10 |
|
|
* | bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705) | Serhiy Storchaka | 2019-05-06 | 1 | -0/+1 |
|
|
* | bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) | Serhiy Storchaka | 2019-04-01 | 1 | -1/+27 |
|
|
* | bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) | Fish | 2019-02-07 | 1 | -16/+20 |
|
|
* | bpo-30152: Reduce the number of imports for argparse. (#1269) | Serhiy Storchaka | 2017-09-25 | 1 | -3/+3 |
|
|
* | bpo-30144: Import collections ABC from collections.abc rather than collection... | Serhiy Storchaka | 2017-04-24 | 1 | -3/+3 |
|
|
* | Fix #29519: weakref spewing exceptions during interp finalization | Łukasz Langa | 2017-02-10 | 1 | -2/+2 |
|
|
* | Issue #28427: old keys should not remove new values from | Antoine Pitrou | 2016-12-27 | 1 | -4/+30 |
|
|
* | Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDicti... | Antoine Pitrou | 2016-12-19 | 1 | -5/+8 |
|
|
* | Issue #22958: Constructor and update method of weakref.WeakValueDictionary | Serhiy Storchaka | 2015-09-29 | 1 | -2/+15 |
|\ |
|
| * | Issue #22958: Constructor and update method of weakref.WeakValueDictionary | Serhiy Storchaka | 2015-09-29 | 1 | -2/+15 |
|
|
* | | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with... | Antoine Pitrou | 2014-10-05 | 1 | -0/+13 |
|\ \
| |/ |
|
| * | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with... | Antoine Pitrou | 2014-10-05 | 1 | -0/+13 |
|
|
* | | Issue #22033: Reprs of most Python implemened classes now contain actual | Serhiy Storchaka | 2014-07-25 | 1 | -2/+2 |
|
|
* | | Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix | Serhiy Storchaka | 2014-07-22 | 1 | -2/+2 |
|/ |
|
* | 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 |
|
|