1. 22214ab Issue #28720: Add collections.abc.AsyncGenerator. by Yury Selivanov · 8 years ago
  2. c3215f5 Merge from 3.5. by Serhiy Storchaka · 8 years ago
  3. 48b1c3f Issue #28376: The type of long range iterator is now registered as Iterator. by Serhiy Storchaka · 8 years ago
  4. 88212ae Merge from 3.5. by Serhiy Storchaka · 8 years ago
  5. 3bd9fde Issue #28376: Fixed typos. Based on patch by Oren Milman. by Serhiy Storchaka · 8 years ago
  6. f066694 Issue 27598: Add Collections to collections.abc. by Guido van Rossum · 8 years ago
  7. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  8. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 8 years ago
  9. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  10. 584e8ae Issue 26915: Add identity checks to the collections ABC __contains__ methods. by Raymond Hettinger · 8 years ago
  11. 16ca06b Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987. by Guido van Rossum · 8 years ago
  12. fdbeb2b Issue #24400: Resurrect inspect.isawaitable() by Yury Selivanov · 9 years ago
  13. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  14. 56fc614 Issue 24315: Make collections.abc.Coroutine derived from Awaitable by Yury Selivanov · 9 years ago
  15. ec219ba Issue #23086: Add start and stop arguments to the Sequence.index() mixin method. by Raymond Hettinger · 9 years ago
  16. e0104ae Issue 24184: Add AsyncIterator and AsyncIterable to collections.abc. by Yury Selivanov · 9 years ago
  17. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  18. bd60e8d Issue #24018: Add a collections.Generator abstract base class. by Raymond Hettinger · 9 years ago
  19. 34af502 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 9 years ago
  20. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 9 years ago
  21. ae5cb21 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 9 years ago
  22. 8943ecf Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 9 years ago
  23. 748ff8b merge by Raymond Hettinger · 10 years ago
  24. 11cda47 Fix guidance for subclassing collections.Set() by Raymond Hettinger · 10 years ago
  25. aa92d34 merge by Raymond Hettinger · 10 years ago
  26. dd5e53a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 10 years ago
  27. 3170d1c Issue #21421: Add __slots__ to the MappingViews ABCs. by Raymond Hettinger · 10 years ago
  28. bf235bd Issue #19218: set __name__ of _collections_abc to collections.abc in order to fix tests and keep beautiful qualified names. by Christian Heimes · 11 years ago
  29. f1dc3ee Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start by Christian Heimes · 11 years ago[Renamed from Lib/collections/abc.py]
  30. 45163cc Close #18690: register memoryview with Sequence ABC by Nick Coghlan · 11 years ago
  31. 840c310 Fix typo on MutableSequence docstring. by Guido van Rossum · 11 years ago
  32. bb25b6f merge by Raymond Hettinger · 11 years ago
  33. 153866e Add missing docstrings to the collections ABCs by Raymond Hettinger · 11 years ago
  34. 73ee816 Merge issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  35. b904e42 Merge issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  36. 4993cc0 utilize yield from by Philip Jenvey · 12 years ago
  37. 7b17a4e Close #14386: Register types.MappingProxyType as a Mapping by Victor Stinner · 12 years ago
  38. 0218428 Clarify that the purpose of computing all the miscellaneous collection types is to register them with the appropriate ABCs. by Raymond Hettinger · 12 years ago
  39. c46759a Issue #11333: Add __slots__ to the collections ABCs. by Raymond Hettinger · 13 years ago
  40. 9479d1a Issue #11388: Added a clear() method to MutableSequence by Eli Bendersky · 13 years ago
  41. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 13 years ago[Renamed (97%) from Lib/_abcoll.py]
  42. b3d89a4 Remove function annotations that slipped into _abcoll. by Raymond Hettinger · 13 years ago
  43. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 13 years ago
  44. 31da5b2 Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operations, namely x -= x and x ^= x by Daniel Stutzbach · 14 years ago
  45. 9117c75 Issue #9214: Fix set operations on KeysView and ItemsView. by Raymond Hettinger · 14 years ago
  46. 51b401b Only expose the abstract base classes. by Raymond Hettinger · 14 years ago
  47. b214e90 Issue #9137: Fix issue in MutableMapping.update, which incorrectly by Mark Dickinson · 14 years ago
  48. 4ad6bd5 Merged revisions 81414 via svnmerge from by Benjamin Peterson · 14 years ago
  49. c384b22 Issue 6037: MutableSequence.__iadd__ should return self. by Raymond Hettinger · 15 years ago
  50. 3f10a95 Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  51. 89fc2b7 Give mapping views a usable repr. by Raymond Hettinger · 15 years ago
  52. 9aa53c2 range() should have been registered as a Sequence. by Raymond Hettinger · 15 years ago
  53. ae65018 Beef-up tests for collections ABCs. by Raymond Hettinger · 15 years ago
  54. 058e31e Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from by Benjamin Peterson · 15 years ago
  55. 4118174 Merged revisions 64475,64544-64545,64550,64557-64558,64565,64570,64577,64582-64583,64585,64590,64592-64593,64625,64630,64638,64647,64655-64656,64663-64664 via svnmerge from by Benjamin Peterson · 16 years ago
  56. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  57. bfd0612 MappingView is Sized. by Raymond Hettinger · 16 years ago
  58. 7aebb64 Document how to use Set and MutableSet as a mixin. by Raymond Hettinger · 16 years ago
  59. 74b6495 Merge r60679 by Raymond Hettinger · 16 years ago
  60. 7190942 Merge r60674 an 60675. by Raymond Hettinger · 16 years ago
  61. 8284c4a Fix-up the _from_iterable() method to return instances of the subclass where it is used. by Raymond Hettinger · 16 years ago
  62. 2202f87 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60568-60598,60600-60616 via svnmerge from by Christian Heimes · 16 years ago
  63. 554c8b8 Convert test_userdict to use the collections.UserDict. by Raymond Hettinger · 16 years ago
  64. b0d28b4 Fix-up mapping equality tests to include both keys and values by Raymond Hettinger · 16 years ago
  65. b346042 Fix typo (thanks Nick). by Raymond Hettinger · 16 years ago
  66. b9da9bc Start replacing UserDict.DictMixin with collections.MutableMapping (the bsddb modules are next). by Raymond Hettinger · 16 years ago
  67. 7b3ce6a Merged revisions 60441-60474 via svnmerge from by Christian Heimes · 16 years ago
  68. 190d79e Merged revisions 60408-60440 via svnmerge from by Christian Heimes · 16 years ago
  69. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 16 years ago
  70. 0db3853 Removed more types from the types module by Christian Heimes · 16 years ago
  71. f83be4e Added view and iterator types to collections / _abcoll by Christian Heimes · 17 years ago
  72. d05eb00 Add ABC ByteString which unifies bytes and bytearray (but not memoryview). by Guido van Rossum · 17 years ago
  73. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  74. a5d2d55 Patch 1335 by Christian Heimes. by Guido van Rossum · 17 years ago
  75. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  76. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  77. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  78. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago