1. 22214ab Issue #28720: Add collections.abc.AsyncGenerator. by Yury Selivanov · 8 years ago
  2. 0d5048c Issue #17941: Add a *module* parameter to collections.namedtuple() by Raymond Hettinger · 8 years ago
  3. f066694 Issue 27598: Add Collections to collections.abc. by Guido van Rossum · 8 years ago
  4. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  5. 6538b43 Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only. by Raymond Hettinger · 8 years ago
  6. 8bde911 Issue #27626: Merge spelling fixes from 3.5 by Martin Panter · 8 years ago
  7. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  8. 584e8ae Issue 26915: Add identity checks to the collections ABC __contains__ methods. by Raymond Hettinger · 8 years ago
  9. 16ca06b Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987. by Guido van Rossum · 8 years ago
  10. 2cefc1e Issue #25616: Tests for OrderedDict are extracted from test_collections by Serhiy Storchaka · 9 years ago
  11. 33e7ea5 Issue #25616: Tests for OrderedDict are extracted from test_collections by Serhiy Storchaka · 9 years ago
  12. 710cd34 Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict that by Serhiy Storchaka · 9 years ago
  13. b45b7b2 Issue #25449: Iterating OrderedDict with keys with unstable hash now raises by Serhiy Storchaka · 9 years ago
  14. 14eefe3 Issue #25395: Fixed crash when highly nested OrderedDict structures were by Serhiy Storchaka · 9 years ago
  15. 992ec46 Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end() by Serhiy Storchaka · 9 years ago
  16. 9157545 merge by Raymond Hettinger · 9 years ago
  17. 7a3602e Issue #24931: Resolve __dict__ conflict in namedtuple subclasses. by Raymond Hettinger · 9 years ago
  18. 8c7f955 Issue #24667: Resize odict in all cases that the underlying dict resizes. by Eric Snow · 9 years ago
  19. fdbeb2b Issue #24400: Resurrect inspect.isawaitable() by Yury Selivanov · 9 years ago
  20. 4fabf02 Issue #24369: Defend against key-changes during iteration. by Eric Snow · 9 years ago
  21. ac02ef3 Issue #24368: Support keyword arguments in OrderedDict methods. by Eric Snow · 9 years ago
  22. b952ab4 Issue #24359: Check for changed OrderedDict size during iteration. by Eric Snow · 9 years ago
  23. d171975 Issue #24348: Drop superfluous increfs/decrefs. by Eric Snow · 9 years ago
  24. a762af7 Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL. by Eric Snow · 9 years ago
  25. 67fb92e Issue #16991: Do not return None from OrderedDict.__reversed__. by Eric Snow · 9 years ago
  26. 7aa5341 Reverting my previous commit. by Yury Selivanov · 9 years ago
  27. 47db717 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  28. a24fcfd Issue 24315: Make collections.abc.Coroutine derived from Awaitable by Yury Selivanov · 9 years ago
  29. 56fc614 Issue 24315: Make collections.abc.Coroutine derived from Awaitable by Yury Selivanov · 9 years ago
  30. c074e9d Issue #24286: Forward port dict view abstract base class tests. by Raymond Hettinger · 9 years ago
  31. ec219ba Issue #23086: Add start and stop arguments to the Sequence.index() mixin method. by Raymond Hettinger · 9 years ago
  32. 573b44c Issue 22189: Add missing methods to UserString by Raymond Hettinger · 9 years ago
  33. e0104ae Issue 24184: Add AsyncIterator and AsyncIterable to collections.abc. by Yury Selivanov · 9 years ago
  34. 08e5300 collections.abc.tests: Remove some unnecessary code. by Yury Selivanov · 9 years ago
  35. aded55c collections.abc: Test that if an object is a Coroutine it is also an Awaitable by Yury Selivanov · 9 years ago
  36. eac503a Issue #24064: Property() docstrings are now writeable. (Patch by Berker Peksag.) by Raymond Hettinger · 9 years ago
  37. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  38. bd60e8d Issue #24018: Add a collections.Generator abstract base class. by Raymond Hettinger · 9 years ago
  39. 32ea165 Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence. by Raymond Hettinger · 10 years ago
  40. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  41. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  42. a86700a Issue #22609: Revert changes in UserDict. They conflicted with existing tests. by Serhiy Storchaka · 10 years ago
  43. ae5cb21 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  44. f51f713 Issue #22609: Revert changes in UserDict. They conflicted with existing tests. by Serhiy Storchaka · 10 years ago
  45. 8943ecf Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  46. bb6c0aa PEP 479: Use the return-keyword instead of raising StopIteration inside a generators. by Raymond Hettinger · 10 years ago
  47. aa92d34 merge by Raymond Hettinger · 10 years ago
  48. dd5e53a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 10 years ago
  49. 2d452ee Issue 15246: Improve test coverage for collections.abc.Set. (Contributed by James King). by Raymond Hettinger · 10 years ago
  50. 53d2c41 Issue #19414: Have the OrderedDict mark deleted links as unusable. by Raymond Hettinger · 10 years ago
  51. 578c921 Issue #19505: The items, keys, and values views of OrderedDict now support by Serhiy Storchaka · 10 years ago
  52. 4d5d69d TestNamedTuple.test_pickle was only testing through protocol 2. Changed to have it automatically test through the most recent version. by Eric V. Smith · 11 years ago
  53. facd0a3 Strengthen one of the collections.Counter() tests by Raymond Hettinger · 11 years ago
  54. 07573d7 merge by Raymond Hettinger · 11 years ago
  55. cb1d96f Issue #18594: Make the C code more closely match the pure python code. by Raymond Hettinger · 11 years ago
  56. 45163cc Close #18690: register memoryview with Sequence ABC by Nick Coghlan · 11 years ago
  57. 0cb2aaf #18106: refactor tests to use subtests and proper assert methods. Patch by Vajrasky Kok. by Ezio Melotti · 11 years ago
  58. 3ee6dab Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled by Serhiy Storchaka · 11 years ago
  59. 163e982 Undo the deprecation of _asdict(). by Raymond Hettinger · 11 years ago
  60. 4e0172f Deprecate nametuple._asdict() by Raymond Hettinger · 11 years ago
  61. 4072875 merge by Raymond Hettinger · 11 years ago
  62. b98dcc1 Issue #15535: Fix pickling of named tuples. by Raymond Hettinger · 11 years ago
  63. 1ba81ee Closes #16613: Added optional mapping argument to ChainMap.new_child. by Vinay Sajip · 12 years ago
  64. b904e42 Merge issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  65. bcac6ad Issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  66. 68fb89f Fix whitespace by Raymond Hettinger · 13 years ago
  67. f1182cd Merge by Raymond Hettinger · 13 years ago
  68. 4e6bf41 Improve Counter.__repr__() to not fail with unorderable values by Raymond Hettinger · 13 years ago
  69. becd568 Issue #13121: Support in-place math operators for collections.Counter(). by Raymond Hettinger · 13 years ago
  70. fcb393c Add support for unary plus and unary minus to collections.Counter() by Raymond Hettinger · 13 years ago
  71. 22cc118 merge by Raymond Hettinger · 13 years ago
  72. 3d89057 Fix named tuples to work with vars(). by Raymond Hettinger · 13 years ago
  73. a5ac2ce Backport 3.3 fixes and cleans ups. by Raymond Hettinger · 13 years ago
  74. 75da860 TestChainMap was not previously used. Minor corrections applied. by Łukasz Langa · 13 years ago
  75. b5a40d4 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  76. 6c9e5b7 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  77. 1c746c2 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  78. 6712a3e Remove test_importable(). Couldn't see how to make this reliable across all platforms. by Raymond Hettinger · 14 years ago
  79. d4652fa Isolate the test_source() test in test_collections by Raymond Hettinger · 14 years ago
  80. f6d3e8e Add tests for _source to importable and exec'able. by Raymond Hettinger · 14 years ago
  81. 2ebea41 Expose the namedtuple source with a _source attribute. by Raymond Hettinger · 14 years ago
  82. 0716a57 Mentioned new clear() method of MutableSequence in its doc, and added unit tests for its mixin methods by Eli Bendersky · 14 years ago
  83. d032131 Add __bool__ method. Add tests. Fix-up broken test. by Raymond Hettinger · 14 years ago
  84. 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 14 years ago
  85. dcb29c9 Add tests for the collections helper class and sync-up with py3k branch. by Raymond Hettinger · 14 years ago
  86. 499e193 Add tests for the _ChainMap helper class. by Raymond Hettinger · 14 years ago
  87. 57d1a88 Fix imports from collections.abc by Raymond Hettinger · 14 years ago
  88. 1d879f6 Backport r87613 to make OrderedDict subclassing match dict subclassing. by Raymond Hettinger · 14 years ago
  89. 426e052 Make C helper function more closely match the pure python version, and add tests. by Raymond Hettinger · 14 years ago
  90. 345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  91. 32062e9 Make it easier to extend OrderedDict without breaking it. by Raymond Hettinger · 14 years ago
  92. a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  93. fdb32c1 Merged revisions 86857 via svnmerge from by Alexander Belopolsky · 14 years ago
  94. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 14 years ago
  95. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  96. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  97. 35c87f2 Issue 9865: add __sizeof__ to OrderedDict. by Raymond Hettinger · 14 years ago
  98. 69976a7 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  99. dc08a14 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  100. f45abc9 Add method to OrderedDict for repositioning keys to the ends. by Raymond Hettinger · 14 years ago