1. b8311cf bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12619) by Thomas Perl · 5 years ago
  2. 796cc6e bpo-36452: dictiter: track maximum iteration count (GH-12596) by Thomas Perl · 5 years ago
  3. d1cbc6f Include the highest pickle protocol in a couple of tests. (GH-10735) by Zackery Spytz · 6 years ago
  4. 6531bf6 bpo-33462: Add __reversed__ to dict and dict views (GH-6827) by Rémi Lapeyre · 6 years ago
  5. 2aaf98c bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) by INADA Naoki · 6 years ago
  6. 1f36bf6 Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052) by Sergey Fedoseev · 6 years ago
  7. b0a7a03 bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067) by Yury Selivanov · 6 years ago
  8. 1fb72d2 bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570) by Serhiy Storchaka · 7 years ago
  9. 753bca3 bpo-27945: Fixed various segfaults with dict. (#1657) by Serhiy Storchaka · 7 years ago
  10. 3d3f264 Fix a memory leak in split-table dictionaries by Victor Stinner · 8 years ago
  11. f0b311b Issue #28123: _PyDict_GetItem_KnownHash() now can raise an exception as by Serhiy Storchaka · 8 years ago
  12. 93f26f7 Issue #28583: PyDict_SetDefault didn't combine split table when needed. by INADA Naoki · 8 years ago
  13. d0ad11f Fix _PyDict_Pop() on pending key by Victor Stinner · 8 years ago
  14. 78601a3 Fix SystemError in compact dict by Victor Stinner · 8 years ago
  15. e514093 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  16. a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  17. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  18. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  19. 5ebe2c8 Cleanup test_dict by Victor Stinner · 8 years ago
  20. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  21. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  22. e54d532 merge 3.4 (#24407) by Benjamin Peterson · 9 years ago
  23. 2a48a6e merge 3.3 (#24407) by Benjamin Peterson · 9 years ago
  24. a82f77f protect against mutation of the dict during insertion (closes #24407) by Benjamin Peterson · 9 years ago
  25. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  26. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  27. 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
  28. 4e1f3d6 #19166: use an unused var in a test. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  29. d97eb0d merge 3.2 (#16345) by Benjamin Peterson · 12 years ago
  30. d1f2cb3 only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) by Benjamin Peterson · 12 years ago
  31. 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
  32. 15ee821 distiguish between refusing to creating shared keys and error (#13903) by Benjamin Peterson · 12 years ago
  33. db780d0 fix instance dicts with str subclasses (#13903) by Benjamin Peterson · 12 years ago
  34. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  35. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  36. 2839382 Issue #14205: Fix test_dict.test_mutating_lookup() by Victor Stinner · 12 years ago
  37. 198b291 Close #14205: dict lookup raises a RuntimeError if the dict is modified during by Victor Stinner · 12 years ago
  38. 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
  39. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  40. 3b87cca Reverted inadvertent change from r86095 by Alexander Belopolsky · 14 years ago
  41. ea13d9d Issue #10199: Moved Demo/turtle under Lib/ by Alexander Belopolsky · 14 years ago
  42. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  43. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  44. a988e42 Recorded merge of revisions 78582 via svnmerge from by Florent Xicluna · 14 years ago
  45. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 14 years ago
  46. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  47. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  48. 5c2db37 Issue #7435: Remove duplicate int/long tests, and other by Mark Dickinson · 15 years ago
  49. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  50. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 15 years ago
  51. b0d56af Give dict views a helpful __repr__. by Raymond Hettinger · 15 years ago
  52. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 15 years ago
  53. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 16 years ago
  54. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  55. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  56. 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
  57. f80680d Migrate remaining tests from UserDict.UserDict to collections.UserDict. by Raymond Hettinger · 16 years ago
  58. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 16 years ago
  59. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  60. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  61. a401bbe Add a few mixed-mode (set vs. dict view) comparisons. by Guido van Rossum · 17 years ago
  62. cf2ce36 Keir Mierle's improved tests for dict view containment tests. by Guido van Rossum · 17 years ago
  63. 1d71996 Add some mixed operations between sets and dict views. by Guido van Rossum · 17 years ago
  64. be53471 Add unit tests for set ops on dict.items(). by Guido van Rossum · 17 years ago
  65. 523259b Keir Mierle's set operations for dict views (keys/items only of course). by Guido van Rossum · 17 years ago
  66. aac530c Patch with Keir Mierle: add rich comparisons between dict views and sets, by Guido van Rossum · 17 years ago
  67. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  68. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  69. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  70. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  71. e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 17 years ago
  72. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  73. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  74. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  75. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  76. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  77. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  78. 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
  79. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  80. 49c522b Expand scope to include general mapping protocol tests. by Raymond Hettinger · 20 years ago
  81. 59b23e8 Add missing test_dict.py from patch #736962. by Walter Dörwald · 20 years ago