1. 3d3f264 Fix a memory leak in split-table dictionaries by Victor Stinner · 8 years ago
  2. f0b311b Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as by Serhiy Storchaka · 8 years ago
  3. 93f26f7 Issue #28583: PyDict_SetDefault didn't combine split table when needed. by INADA Naoki · 8 years ago
  4. d0ad11f Fix _PyDict_Pop() on pending key by Victor Stinner · 8 years ago
  5. 78601a3 Fix SystemError in compact dict by Victor Stinner · 8 years ago
  6. e514093 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  7. a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  8. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  9. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  10. 5ebe2c8 Cleanup test_dict by Victor Stinner · 8 years ago
  11. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  12. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  13. e54d532 merge 3.4 (#24407) by Benjamin Peterson · 9 years ago
  14. 2a48a6e merge 3.3 (#24407) by Benjamin Peterson · 9 years ago
  15. a82f77f protect against mutation of the dict during insertion (closes #24407) by Benjamin Peterson · 9 years ago
  16. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  17. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  18. d696732 Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. by Antoine Pitrou · 10 years ago
  19. 4e1f3d6 #19166: use an unused var in a test. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  20. d97eb0d merge 3.2 (#16345) by Benjamin Peterson · 12 years ago
  21. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  22. 9a23490 Issue #14417: Mutating a dict during lookup now restarts the lookup instead of raising a RuntimeError (undoes issue #14205). by Antoine Pitrou · 12 years ago
  23. 15ee821 distiguish between refusing to creating shared keys and error (#13903) by Benjamin Peterson · 12 years ago
  24. db780d0 fix instance dicts with str subclasses (#13903) by Benjamin Peterson · 12 years ago
  25. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  26. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  27. 2839382 Issue #14205: Fix test_dict.test_mutating_lookup() by Victor Stinner · 12 years ago
  28. 198b291 Close #14205: dict lookup raises a RuntimeError if the dict is modified during by Victor Stinner · 12 years ago
  29. e965d97 Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 12 years ago
  30. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  31. 3b87cca Reverted inadvertent change from r86095 by Alexander Belopolsky · 14 years ago
  32. ea13d9d Issue #10199: Moved Demo/turtle under Lib/ by Alexander Belopolsky · 14 years ago
  33. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  34. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  35. a988e42 Recorded merge of revisions 78582 via svnmerge from by Florent Xicluna · 14 years ago
  36. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 14 years ago
  37. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 14 years ago
  38. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 14 years ago
  39. 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
  40. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  41. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 15 years ago
  42. b0d56af Give dict views a helpful __repr__. by Raymond Hettinger · 15 years ago
  43. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 15 years ago
  44. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 15 years ago
  45. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  46. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  47. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  48. f80680d Migrate remaining tests from UserDict.UserDict to collections.UserDict. by Raymond Hettinger · 16 years ago
  49. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 16 years ago
  50. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  51. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  52. a401bbe Add a few mixed-mode (set vs. dict view) comparisons. by Guido van Rossum · 17 years ago
  53. cf2ce36 Keir Mierle's improved tests for dict view containment tests. by Guido van Rossum · 17 years ago
  54. 1d71996 Add some mixed operations between sets and dict views. by Guido van Rossum · 17 years ago
  55. be53471 Add unit tests for set ops on dict.items(). by Guido van Rossum · 17 years ago
  56. 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
  57. aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
  58. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  59. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  60. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  61. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  62. e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 17 years ago
  63. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  64. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  65. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  66. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  67. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  68. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  69. c3e54b8 Use *absolute* import now that it is required. (Should this go into 2.5? Hopefully not the bogus comment about using relative imports. That was just to see if anyone was paying attention.) by Neal Norwitz · 18 years ago
  70. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  71. 49c522b Expand scope to include general mapping protocol tests. by Raymond Hettinger · 20 years ago
  72. 59b23e8 Add missing test_dict.py from patch #736962. by Walter Dörwald · 20 years ago