1. 2085bd0 bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700) by Serhiy Storchaka · 5 years ago
  2. 1b5f9c9 bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (GH-8813) by Naris R · 6 years ago
  3. 02556fb bpo-32467: Let collections.abc.ValuesView inherit from Collection (#5152) by Raymond Hettinger · 6 years ago
  4. 5ce0a2a bpo-31942: Document optional support of start and stop attributes in Sequence.index method (#4277) by Nitish Chandra · 7 years ago
  5. 5affd23 bpo-29762: More use "raise from None". (#569) by Serhiy Storchaka · 7 years ago
  6. d5d3249 bpo-26915: Test identity first in membership operation in index() and count() methods of collections.abc.Sequence (GH-503) by Xiang Zhang · 7 years ago
  7. 22214ab Issue #28720: Add collections.abc.AsyncGenerator. by Yury Selivanov · 8 years ago
  8. c3215f5 Merge from 3.5. by Serhiy Storchaka · 8 years ago
  9. 48b1c3f Issue #28376: The type of long range iterator is now registered as Iterator. by Serhiy Storchaka · 8 years ago
  10. 88212ae Merge from 3.5. by Serhiy Storchaka · 8 years ago
  11. 3bd9fde Issue #28376: Fixed typos. Based on patch by Oren Milman. by Serhiy Storchaka · 8 years ago
  12. f066694 Issue 27598: Add Collections to collections.abc. by Guido van Rossum · 8 years ago
  13. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  14. 711d25d Merge 3.5 (issue #27243) by Yury Selivanov · 8 years ago
  15. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  16. 584e8ae Issue 26915: Add identity checks to the collections ABC __contains__ methods. by Raymond Hettinger · 8 years ago
  17. 16ca06b Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987. by Guido van Rossum · 8 years ago
  18. fdbeb2b Issue #24400: Resurrect inspect.isawaitable() by Yury Selivanov · 9 years ago
  19. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  20. 56fc614 Issue 24315: Make collections.abc.Coroutine derived from Awaitable by Yury Selivanov · 9 years ago
  21. ec219ba Issue #23086: Add start and stop arguments to the Sequence.index() mixin method. by Raymond Hettinger · 9 years ago
  22. e0104ae Issue 24184: Add AsyncIterator and AsyncIterable to collections.abc. by Yury Selivanov · 9 years ago
  23. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  24. bd60e8d Issue #24018: Add a collections.Generator abstract base class. by Raymond Hettinger · 9 years ago
  25. 34af502 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 9 years ago
  26. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 9 years ago
  27. ae5cb21 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  28. 8943ecf Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  29. 748ff8b merge by Raymond Hettinger · 10 years ago
  30. 11cda47 Fix guidance for subclassing collections.Set() by Raymond Hettinger · 10 years ago
  31. aa92d34 merge by Raymond Hettinger · 10 years ago
  32. dd5e53a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 10 years ago
  33. 3170d1c Issue #21421: Add __slots__ to the MappingViews ABCs. by Raymond Hettinger · 10 years ago
  34. 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
  35. 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]
  36. 45163cc Close #18690: register memoryview with Sequence ABC by Nick Coghlan · 11 years ago
  37. 840c310 Fix typo on MutableSequence docstring. by Guido van Rossum · 11 years ago
  38. bb25b6f merge by Raymond Hettinger · 11 years ago
  39. 153866e Add missing docstrings to the collections ABCs by Raymond Hettinger · 11 years ago
  40. 73ee816 Merge issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  41. b904e42 Merge issue #16373: Prevent infinite recursion for ABC Set class operations. by Andrew Svetlov · 12 years ago
  42. 4993cc0 utilize yield from by Philip Jenvey · 12 years ago
  43. 7b17a4e Close #14386: Register types.MappingProxyType as a Mapping by Victor Stinner · 12 years ago
  44. 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
  45. c46759a Issue #11333: Add __slots__ to the collections ABCs. by Raymond Hettinger · 13 years ago
  46. 9479d1a Issue #11388: Added a clear() method to MutableSequence by Eli Bendersky · 13 years ago
  47. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 13 years ago[Renamed (97%) from Lib/_abcoll.py]
  48. b3d89a4 Remove function annotations that slipped into _abcoll. by Raymond Hettinger · 13 years ago
  49. ead2222 Issue #10565: Iterator ABC should require both __next__ and __iter__. by Raymond Hettinger · 14 years ago
  50. 31da5b2 Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operations, namely x -= x and x ^= x by Daniel Stutzbach · 14 years ago
  51. 9117c75 Issue #9214: Fix set operations on KeysView and ItemsView. by Raymond Hettinger · 14 years ago
  52. 51b401b Only expose the abstract base classes. by Raymond Hettinger · 14 years ago
  53. b214e90 Issue #9137: Fix issue in MutableMapping.update, which incorrectly by Mark Dickinson · 14 years ago
  54. 4ad6bd5 Merged revisions 81414 via svnmerge from by Benjamin Peterson · 14 years ago
  55. c384b22 Issue 6037: MutableSequence.__iadd__ should return self. by Raymond Hettinger · 15 years ago
  56. 3f10a95 Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  57. 89fc2b7 Give mapping views a usable repr. by Raymond Hettinger · 15 years ago
  58. 9aa53c2 range() should have been registered as a Sequence. by Raymond Hettinger · 15 years ago
  59. ae65018 Beef-up tests for collections ABCs. by Raymond Hettinger · 15 years ago
  60. 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
  61. 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
  62. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  63. bfd0612 MappingView is Sized. by Raymond Hettinger · 16 years ago
  64. 7aebb64 Document how to use Set and MutableSet as a mixin. by Raymond Hettinger · 16 years ago
  65. 74b6495 Merge r60679 by Raymond Hettinger · 16 years ago
  66. 7190942 Merge r60674 an 60675. by Raymond Hettinger · 16 years ago
  67. 8284c4a Fix-up the _from_iterable() method to return instances of the subclass where it is used. by Raymond Hettinger · 16 years ago
  68. 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
  69. 554c8b8 Convert test_userdict to use the collections.UserDict. by Raymond Hettinger · 16 years ago
  70. b0d28b4 Fix-up mapping equality tests to include both keys and values by Raymond Hettinger · 16 years ago
  71. b346042 Fix typo (thanks Nick). by Raymond Hettinger · 16 years ago
  72. b9da9bc Start replacing UserDict.DictMixin with collections.MutableMapping (the bsddb modules are next). by Raymond Hettinger · 16 years ago
  73. 7b3ce6a Merged revisions 60441-60474 via svnmerge from by Christian Heimes · 16 years ago
  74. 190d79e Merged revisions 60408-60440 via svnmerge from by Christian Heimes · 16 years ago
  75. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  76. 0db3853 Removed more types from the types module by Christian Heimes · 17 years ago
  77. f83be4e Added view and iterator types to collections / _abcoll by Christian Heimes · 17 years ago
  78. d05eb00 Add ABC ByteString which unifies bytes and bytearray (but not memoryview). by Guido van Rossum · 17 years ago
  79. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  80. a5d2d55 Patch 1335 by Christian Heimes. by Guido van Rossum · 17 years ago
  81. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  82. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  83. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  84. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago