1. 9cd7e17 Fix #29519: weakref spewing exceptions during interp finalization by Łukasz Langa · 7 years ago
  2. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 7 years ago
  3. c1ee488 Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDictionary.pop() by Antoine Pitrou · 7 years ago
  4. f1c7808 Issue #22958: Constructor and update method of weakref.WeakValueDictionary by Serhiy Storchaka · 9 years ago
  5. b5102e3 Issue #22958: Constructor and update method of weakref.WeakValueDictionary by Serhiy Storchaka · 9 years ago
  6. 414e15a Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 10 years ago
  7. 1bf974d Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 10 years ago
  8. 465e60e Issue #22033: Reprs of most Python implemened classes now contain actual by Serhiy Storchaka · 10 years ago
  9. 0c937b3 Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix by Serhiy Storchaka · 10 years ago
  10. a81dd65 Issue #15528: Delay importing atexit until weakref.finalize() used. by Richard Oudkerk · 11 years ago
  11. 7a3dae0 Issue #15528: Add weakref.finalize to support finalization using by Richard Oudkerk · 11 years ago
  12. 39b17c5 Backout 2e446e87ac5b; it breaks the unix buildbots. by Richard Oudkerk · 11 years ago
  13. f359302 Issue #15528: Add weakref.finalize to support finalization using by Richard Oudkerk · 11 years ago
  14. c3afba1 Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak references to bound methods. by Antoine Pitrou · 12 years ago
  15. 4993cc0 utilize yield from by Philip Jenvey · 12 years ago
  16. bbe2f60 Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, WeakValueDictionary) to return a better approximation when some objects are dead or dying. by Antoine Pitrou · 12 years ago
  17. bd87d08 Use booleans. by Georg Brandl · 13 years ago
  18. c1baa60 Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against by Antoine Pitrou · 14 years ago
  19. c06de47 Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty parameters. by Antoine Pitrou · 15 years ago
  20. 6e61006 Merged revisions 72669 via svnmerge from by Antoine Pitrou · 15 years ago
  21. 663fffa Fix a circular import dependency. by Brett Cannon · 15 years ago
  22. ecaab83 Committing the patch in issue 2965, so that weakref dicts have a closer by Barry Warsaw · 16 years ago
  23. 7d10c2b ReferenceError is undefined. causes test___all__.py to fail. remove it from __all__ by Gregory P. Smith · 16 years ago
  24. e8d0bf9 Merged revisions 65795 via svnmerge from by Brett Cannon · 16 years ago
  25. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  26. 1021cc6 No need to register classes that already inherit from ABCs. by Raymond Hettinger · 16 years ago
  27. 7ac6095 Decouple weakref containers from UserDict and teach them to use ABC instead. by Raymond Hettinger · 16 years ago
  28. 93fa608 Moved WeakSet into a bootstap module use by abc.py. by Raymond Hettinger · 16 years ago
  29. 3b8cb17 #1061 (mainly by Thomas Wouters): use weak sets for abc caches. by Georg Brandl · 17 years ago
  30. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  31. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  32. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  33. 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 17 years ago
  34. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  35. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  36. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  37. 9166e1a Bug #1196315: fix weakref.WeakValueDictionary constructor. by Georg Brandl · 19 years ago
  38. 33ad28b Use multi-line import by Andrew M. Kuchling · 20 years ago
  39. 6114679 SF bug #1012315: weakref.WeakValueDictionary should override .has_key() by Raymond Hettinger · 20 years ago
  40. cc0def1 Convert weak iterators to generator form. by Raymond Hettinger · 20 years ago
  41. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  42. 80ce6dd The default argument in dict.setdefault() defaults to None. by Walter Dörwald · 20 years ago
  43. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 20 years ago
  44. 886128f SF 742860: WeakKeyDictionary __delitem__ uses iterkeys by Tim Peters · 21 years ago
  45. 2c2d322 SF patch #667730: More DictMixin by Raymond Hettinger · 21 years ago
  46. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  47. 009afb7 SF patch 564549 (Erik Andersén). by Guido van Rossum · 22 years ago
  48. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  49. 3bae7dd WeakKeyDictionary.has_key(): If the key being tested is not weakly by Fred Drake · 23 years ago
  50. e029242 ReferenceError is now built-in, so pick it up from the right place. by Fred Drake · 23 years ago
  51. 746fe0f Clean up circular references in the Weak*Dictionary classes; this avoids by Fred Drake · 23 years ago
  52. b663a2c Add __delitem__() support for WeakKeyDictionary. This closes SF bug #458860. by Fred Drake · 23 years ago
  53. 4fd06e0 Make sure that WeakValueDictionary[] raises KeyError instead of TypeError by Fred Drake · 23 years ago
  54. 101209d Added iterator support to the Weak*Dictionary classes. by Fred Drake · 23 years ago
  55. bd7f818 Weak*Dictionary: Added docstrings to the classes. by Fred Drake · 23 years ago
  56. 1d9e4b7 Weak*Dictionary.update(): Fix calls to [].append() to only have one by Fred Drake · 23 years ago
  57. 9a9d219 mapping(): Remove this function since it does not add anything to the API. by Fred Drake · 23 years ago
  58. 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 23 years ago
  59. 9d2c85d Change WeakDictionary to WeakValueDictionary in a couple more places. by Fred Drake · 23 years ago
  60. 5e16333 Patch #403985: Add support for weak-keyed dictionaries by Martin v. Löwis · 23 years ago
  61. 0399bd8 Ouch! I need a better test suite for this. ;-( by Fred Drake · 23 years ago
  62. 312a5dc WeakDictionary.items(): Do not allow (key,ref) pairs to leak out for by Fred Drake · 23 years ago
  63. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 23 years ago