1. 462c1f0 [3.10] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005) (GH-28027) by Serhiy Storchaka · 4 years ago
  2. 659030c bpo-44720: Don't crash when calling weakref.proxy(not_an_iterator).__next__ (GH-27316) (GH-27324) by Miss Islington (bot) · 4 years ago
  3. 2df13e1 bpo-44523: Remove the pass-through for hash() in weakref proxy objects (GH-26950) by Miss Islington (bot) · 4 years, 1 month ago
  4. 96074de bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946) by Pablo Galindo · 5 years ago
  5. 8f1ed21 bpo-36144: Add union operators to WeakValueDictionary584 (#19127) by Curtis Bucher · 5 years ago
  6. 25e580a bpo-36144: Add union operators to WeakKeyDictionary (#19106) by Curtis Bucher · 5 years ago
  7. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  8. 10cd00a bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) by Pablo Galindo · 6 years ago
  9. a2af05a bpo-38006: Avoid closure in weakref.WeakValueDictionary (GH-15641) by Victor Stinner · 6 years ago
  10. 662db12 bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952) by Serhiy Storchaka · 6 years ago
  11. 142566c [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620) by Serhiy Storchaka · 6 years ago
  12. 7abb6c0 bpo-36669: add matmul support to weakref.proxy (GH-12932) by Mark Dickinson · 6 years ago
  13. 42a139e bpo-36492: Deprecate passing some arguments as keyword arguments. (GH-12637) by Serhiy Storchaka · 6 years ago
  14. 96d37db bpo-35615: Fix crashes when copying a Weak{Key,Value}Dictionary. (GH-11384) by Fish · 6 years ago
  15. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 8 years ago
  16. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 8 years ago
  17. d741ed4 Issue #28427: old keys should not remove new values from by Antoine Pitrou · 9 years ago
  18. e10ca3a Issue #28427: old keys should not remove new values from by Antoine Pitrou · 9 years ago
  19. d4580ec Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDictionary.pop() by Antoine Pitrou · 9 years ago
  20. c1ee488 Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDictionary.pop() by Antoine Pitrou · 9 years ago
  21. 8044809 merge 3.5 (#26617) by Benjamin Peterson · 9 years ago
  22. 8f657c3 ensure gc tracking is off when invoking weakref callbacks (closes #26617) by Benjamin Peterson · 9 years ago
  23. 742da04 Implement compact dict by Victor Stinner · 9 years ago
  24. cd14d5d Correct a comment in the test referencing the wrong issue number (issue3100 by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) · 9 years ago
  25. a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. by Serhiy Storchaka · 9 years ago
  26. 21eb487 Issue #17765: weakref.ref() no longer silently ignores keyword arguments. by Serhiy Storchaka · 9 years ago
  27. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 10 years ago
  28. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 10 years ago
  29. f1c7808 Issue #22958: Constructor and update method of weakref.WeakValueDictionary by Serhiy Storchaka · 10 years ago
  30. b5102e3 Issue #22958: Constructor and update method of weakref.WeakValueDictionary by Serhiy Storchaka · 10 years ago
  31. ce64391 Issue #9517: Move script_helper to the support package. by Berker Peksag · 10 years ago
  32. 414e15a Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 11 years ago
  33. 1bf974d Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive. by Antoine Pitrou · 11 years ago
  34. d475731 merge 3.4 (#22267) by Benjamin Peterson · 11 years ago
  35. 18bb702 fix some test_weakref tests to not rely on ref-counting (closes #22267) by Benjamin Peterson · 11 years ago
  36. b349e4c Issue #22116: C functions and methods (of the 'builtin_function_or_method' type) can now be weakref'ed. Patch by Wei Wu. by Antoine Pitrou · 11 years ago
  37. 0c937b3 Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix by Serhiy Storchaka · 11 years ago
  38. c1fc5b5 Issue #19607: Use specific asserts in weakref tests. by Serhiy Storchaka · 12 years ago
  39. 2e29c9e Issue #19607: Use specific asserts in weakref tests. by Serhiy Storchaka · 12 years ago
  40. 7a3dae05 Issue #15528: Add weakref.finalize to support finalization using by Richard Oudkerk · 12 years ago
  41. 39b17c5 Backout 2e446e87ac5b; it breaks the unix buildbots. by Richard Oudkerk · 12 years ago
  42. f359302 Issue #15528: Add weakref.finalize to support finalization using by Richard Oudkerk · 12 years ago
  43. 556e94b Issue #17643: Add __callback__ attribute to weakref.ref. by Mark Dickinson · 12 years ago
  44. 53f604c Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
  45. 62a0d6e Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
  46. c3afba1 Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak references to bound methods. by Antoine Pitrou · 13 years ago
  47. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 13 years ago
  48. 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 · 13 years ago
  49. 3af01a1 NOTE: only ported the test for new-style classes. by Antoine Pitrou · 15 years ago
  50. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  51. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 16 years ago
  52. c1baa60 Issue #7105: Make WeakKeyDictionary and WeakValueDictionary robust against by Antoine Pitrou · 16 years ago
  53. 3201977 fix __bytes__ handling here in py3x by Benjamin Peterson · 16 years ago
  54. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 16 years ago
  55. c06de47 Issue #6149: Fix initialization of WeakValueDictionary objects from non-empty parameters. by Antoine Pitrou · 16 years ago
  56. 9aa4299 Merged revisions 66337,66347,66350,66352,66358 via svnmerge from by Benjamin Peterson · 17 years ago
  57. ecaab83 Committing the patch in issue 2965, so that weakref dicts have a closer by Barry Warsaw · 17 years ago
  58. c856c7a Merged revisions 64309 via svnmerge from by Amaury Forgeot d'Arc · 17 years ago
  59. b533e26 Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,63470,63483-63484,63496-63497,63499-63501,63530-63531,63540,63614 via svnmerge from by Georg Brandl · 17 years ago
  60. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 17 years ago
  61. 53dbe39 Move UserList to collections. by Raymond Hettinger · 17 years ago
  62. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 18 years ago
  63. e61fd5b Patch by Christian Heimes to change self.assert_(x == y) into by Guido van Rossum · 18 years ago
  64. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 18 years ago
  65. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 18 years ago
  66. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  67. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 18 years ago
  68. 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 18 years ago
  69. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  70. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 18 years ago
  71. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 19 years ago
  72. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 19 years ago
  73. 0b70cca Remove usage of backticks. by Brett Cannon · 19 years ago
  74. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 19 years ago
  75. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 19 years ago
  76. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 19 years ago
  77. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 19 years ago
  78. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 19 years ago
  79. 9a65d58 Add doctest for examples in libweakref.tex to test_weakref. by Georg Brandl · 20 years ago
  80. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 20 years ago
  81. bdcb941 SF bug #978308, Spurious errors taking bool of dead pro by Neal Norwitz · 21 years ago
  82. 0a4dd39 Make weak references subclassable: by Fred Drake · 21 years ago
  83. 118f931 Rename class attribute containing the class to be tested, so the name is the by Walter Dörwald · 21 years ago
  84. 0a6d0ff Port the dictionary tests from test_types.py to unittest. Collect as much by Walter Dörwald · 21 years ago
  85. 55cf434 further testing indicates that the simplified version of the test by Fred Drake · 21 years ago
  86. 61dafcb use existing test object instead of defining a new class by Fred Drake · 21 years ago
  87. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  88. bc875f5 Allocating a new weakref object can cause existing weakref objects for by Fred Drake · 22 years ago
  89. ea2adc9 - add tests that exercise fixes for the PyWeakref_NewRef() and by Fred Drake · 22 years ago
  90. b167b04 Add tests to test_weakref.py to bring code coverage in _weakref.c up to 100%. by Walter Dörwald · 22 years ago
  91. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 22 years ago
  92. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 22 years ago
  93. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 22 years ago
  94. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 22 years ago
  95. f425b1e stylistic nits: - wrap some long lines - shorten others - fix indentation by Fred Drake · 22 years ago
  96. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 22 years ago
  97. 50d8b8b Fleshed out WeakKeyDictionary.__delitem__ NEWS to cover issues raised on by Tim Peters · 22 years ago
  98. 886128f SF 742860: WeakKeyDictionary __delitem__ uses iterkeys by Tim Peters · 22 years ago
  99. 91bbd9a Used sets.Set() to compare unordered sequences. Improves clarity and brevity. by Raymond Hettinger · 22 years ago
  100. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago