aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/weakref.py
Commit message (Expand)AuthorAge
* gh-89967: make WeakKeyDictionary and WeakValueDictionary thread safe (#125325)Kumar Aditya2024-10-13
* Remove unnecessary registration of weakref.WeakSet to _collections_abc.Set (G...Géry Ogam2022-03-31
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-30
* bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two thre...Thomas Grainger2021-08-28
* Update URLs in comments and metadata to use HTTPS (GH-27458)Noah Kantrowitz2021-07-30
* bpo-36144: Add union operators to WeakValueDictionary584 (#19127)Curtis Bucher2020-03-24
* bpo-36144: Add union operators to WeakKeyDictionary (#19106)Curtis Bucher2020-03-23
* bpo-38761: Register WeakSet as a MutableSet (GH-17104)Raymond Hettinger2019-11-10
* bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641)Victor Stinner2019-09-09
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-08
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-05
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-01
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-06
* bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637)Serhiy Storchaka2019-04-01
* bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384)Fish2019-02-07
* bpo-30152: Reduce the number of imports for argparse. (#1269)Serhiy Storchaka2017-09-26
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-24
* Fix #29519: weakref spewing exceptions during interp finalizationŁukasz Langa2017-02-10
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-27
* Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDicti...Antoine Pitrou2016-12-19
* Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-29
|\
| * Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-29
* | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with...Antoine Pitrou2014-10-05
|\|
| * Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with...Antoine Pitrou2014-10-05
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-25
* | Issue #22031: Reprs now always use hexadecimal format with the "0x" prefixSerhiy Storchaka2014-07-22
|/
* Issue #15528: Delay importing atexit until weakref.finalize() used.Richard Oudkerk2013-06-08
* Issue #15528: Add weakref.finalize to support finalization usingRichard Oudkerk2013-05-05
* Backout 2e446e87ac5b; it breaks the unix buildbots.Richard Oudkerk2013-05-05
* Issue #15528: Add weakref.finalize to support finalization usingRichard Oudkerk2013-05-05
* Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak referenc...Antoine Pitrou2012-11-17
* utilize yield fromPhilip Jenvey2012-10-01
* Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, W...Antoine Pitrou2012-03-01
* Use booleans.Georg Brandl2010-12-03
* 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