1. 62bc321 Fix out-of-date comment by Raymond Hettinger · 8 years ago
  2. 2831b38 merge by Raymond Hettinger · 9 years ago
  3. c3f7d17 Fix non-ascii character by Raymond Hettinger · 9 years ago
  4. a89013d merge by Raymond Hettinger · 9 years ago
  5. c9c3dd8 Add a missing docstring by Raymond Hettinger · 9 years ago
  6. 5527cf1 Issue #22609: Constructor of collections.UserDict now accepts the self keyword by Serhiy Storchaka · 9 years ago
  7. f4ee1c2 Issue #22609: Constructor of collections.UserDict now accepts the self keyword by Serhiy Storchaka · 9 years ago
  8. 68f5ef2 Issue #22609: Constructor of collections.UserDict now accepts the self keyword by Serhiy Storchaka · 9 years ago
  9. 3ada93f merge by Raymond Hettinger · 9 years ago
  10. 8ba03cf Fix whitespace in comment. by Raymond Hettinger · 9 years ago
  11. 9157545 merge by Raymond Hettinger · 9 years ago
  12. 7a3602e Issue #24931: Resolve __dict__ conflict in namedtuple subclasses. by Raymond Hettinger · 9 years ago
  13. 4c97a62 Issue #23509: Speed up Counter operators (Based on patch by Serhiy Storchaka.) by Raymond Hettinger · 9 years ago
  14. 96c6af9 Issue #16991: Add a C implementation of collections.OrderedDict. by Eric Snow · 9 years ago
  15. 573b44c Issue 22189: Add missing methods to UserString by Raymond Hettinger · 9 years ago
  16. 32ea165 Issue 23704: Add index(), copy(), and insert() to deques. Register deques as a MutableSequence. by Raymond Hettinger · 9 years ago
  17. 08448a1 Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ by Serhiy Storchaka · 9 years ago
  18. f51f713 Issue #22609: Revert changes in UserDict. They conflicted with existing tests. by Serhiy Storchaka · 10 years ago
  19. a86700a Issue #22609: Revert changes in UserDict. They conflicted with existing tests. by Serhiy Storchaka · 10 years ago
  20. 8943ecf Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  21. ae5cb21 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 10 years ago
  22. f2bbb65 merge by Raymond Hettinger · 10 years ago
  23. bc00050 Issue 21832: Require named tuple inputs to be exact strings by Raymond Hettinger · 10 years ago
  24. 53d2c41 Issue #19414: Have the OrderedDict mark deleted links as unusable. by Raymond Hettinger · 10 years ago
  25. 578c921 Issue #19505: The items, keys, and values views of OrderedDict now support by Serhiy Storchaka · 10 years ago
  26. d852e99 Clean-up docstring by Raymond Hettinger · 10 years ago
  27. f1dc3ee Issue #19218: Rename collections.abc to _collections_abc in order to speed up interpreter start by Christian Heimes · 11 years ago
  28. a7e7497 #18466: merge with 3.3. by Ezio Melotti · 11 years ago
  29. 85a8629 #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  30. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  31. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  32. 587d3bf Update docstring for _asdict() to indicate it is obsolete. by Raymond Hettinger · 11 years ago
  33. b37706f Remove unnecessary exception handler. by Raymond Hettinger · 11 years ago
  34. 3ee6dab Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickled by Serhiy Storchaka · 11 years ago
  35. 163e982 Undo the deprecation of _asdict(). by Raymond Hettinger · 11 years ago
  36. 4e0172f Deprecate nametuple._asdict() by Raymond Hettinger · 11 years ago
  37. 8c03d83 merge by Raymond Hettinger · 11 years ago
  38. 5c71079 merge by Raymond Hettinger · 11 years ago
  39. 7a3dae0 Issue #15528: Add weakref.finalize to support finalization using by Richard Oudkerk · 11 years ago
  40. 4072875 merge by Raymond Hettinger · 11 years ago
  41. b98dcc1 Issue #15535: Fix pickling of named tuples. by Raymond Hettinger · 11 years ago
  42. 325dc88 Backport improved dict comparison logic by Raymond Hettinger · 11 years ago
  43. a35e281 Merge by Raymond Hettinger · 11 years ago
  44. 4f4ba16 Issue #17331: Use isidentifier() instead of isalnum() to check for valid identifiers. by Raymond Hettinger · 11 years ago
  45. 1ba81ee Closes #16613: Added optional mapping argument to ChainMap.new_child. by Vinay Sajip · 11 years ago
  46. 527507d Improve OrderedDict equality test. by Raymond Hettinger · 12 years ago
  47. 1c2018c Small cleanup and optimization by Raymond Hettinger · 12 years ago
  48. 80ed4d4 Minor reformatting (wrap fat lines, etc.) and create an __main__ file by Raymond Hettinger · 12 years ago
  49. 4fd3f0c Merge by Raymond Hettinger · 12 years ago
  50. f1182cd Merge by Raymond Hettinger · 13 years ago
  51. becd568 Issue #13121: Support in-place math operators for collections.Counter(). by Raymond Hettinger · 13 years ago
  52. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  53. c92f622 add ChainMap to __all__ (closes #12959) by Benjamin Peterson · 13 years ago
  54. fcb393c Add support for unary plus and unary minus to collections.Counter() by Raymond Hettinger · 13 years ago
  55. 22cc118 merge by Raymond Hettinger · 13 years ago
  56. 1c7b7f7 Userlist.copy() wasn't returning a UserList. by Raymond Hettinger · 13 years ago
  57. a82aa55 Minor clean-ups to docstrings, comments, and var names. by Raymond Hettinger · 13 years ago
  58. 4f438b7 Minor text rearrangement. by Raymond Hettinger · 13 years ago
  59. f48ac30 Issue #11875: Alter the previous fix to work better with subclasses by Raymond Hettinger · 13 years ago
  60. 98c850a Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 13 years ago
  61. 90375bc Rework multiset methods to use less memory and to make fewer calls to __hash__. by Raymond Hettinger · 13 years ago
  62. b5a40d4 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  63. f6d3e8e Add tests for _source to importable and exec'able. by Raymond Hettinger · 13 years ago
  64. 15d0c1d Minor clean-ups. by Raymond Hettinger · 13 years ago
  65. 2ebea41 Expose the namedtuple source with a _source attribute. by Raymond Hettinger · 13 years ago
  66. 843a751 Move namespace setup inside the template. by Raymond Hettinger · 13 years ago
  67. b2d0945 Minor named tuple clean-ups. by Raymond Hettinger · 13 years ago
  68. fef8546 Factor-out named tuple class definition template strings. by Raymond Hettinger · 13 years ago
  69. 74b015e Clean-up whitespace. by Raymond Hettinger · 13 years ago
  70. 3e82ae0 Replace **locals() with explicit field names. by Raymond Hettinger · 13 years ago
  71. 9a3f4cb Simplify the named tuple template by using the new string format syntax. by Raymond Hettinger · 13 years ago
  72. 50105d3 Improve readability by replacing '\n' in template with real newlines. by Raymond Hettinger · 13 years ago
  73. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  74. d032131 Add __bool__ method. Add tests. Fix-up broken test. by Raymond Hettinger · 13 years ago
  75. 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 13 years ago
  76. cbbaa96 Issue #10516: adding list.clear() and list.copy() methods by Eli Bendersky · 13 years ago
  77. 499e193 Add tests for the _ChainMap helper class. by Raymond Hettinger · 13 years ago
  78. c942310 Factor-out common code for helper classes. by Raymond Hettinger · 13 years ago
  79. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 13 years ago[Renamed (98%) from Lib/collections.py]
  80. ddb5240 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 13 years ago
  81. ff72816 Supply a reduce method for pickling. by Raymond Hettinger · 14 years ago
  82. 00d43fd Fix doctest to not rely on order of dictionary entries. by Raymond Hettinger · 14 years ago
  83. 345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  84. 32062e9 Make it easier to extend OrderedDict without breaking it. by Raymond Hettinger · 14 years ago
  85. a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  86. 96f3410 Issue 10667: Fast path for collections.Counter by Raymond Hettinger · 14 years ago
  87. 35c87f2 Issue 9865: add __sizeof__ to OrderedDict. by Raymond Hettinger · 14 years ago
  88. c1cc0d0 Remove unneeded exception chaining. by Raymond Hettinger · 14 years ago
  89. f7328d0 Improve iteration speed by only proxying back links. by Raymond Hettinger · 14 years ago
  90. 98a5f3f Issue 9840: Add reprlib.recursive_repr(), a decorator for handling recursive calls to __repr__ methods. by Raymond Hettinger · 14 years ago
  91. f172529 Put tests in more logical order. by Raymond Hettinger · 14 years ago
  92. c5c29c0 Use weakrefs for both forward and backward links. by Raymond Hettinger · 14 years ago
  93. dc08a14 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  94. fa11db0 Issue #9825: Replace OrderedDict.__del__() with weakrefs. by Raymond Hettinger · 14 years ago
  95. bd88802 Revert r84700 which had an unfortunate performance cost. by Raymond Hettinger · 14 years ago
  96. 22b46e0 Separate positional arguments from localized globals. by Raymond Hettinger · 14 years ago
  97. f45abc9 Add method to OrderedDict for repositioning keys to the ends. by Raymond Hettinger · 14 years ago
  98. 7babc1b Better method name. Tighten inner-loop with bound methods. by Raymond Hettinger · 14 years ago
  99. 331722d Make OrderedDict.popitem() a bit smarter and faster by Raymond Hettinger · 14 years ago
  100. 38d17e3 Speed-up cache updates by Raymond Hettinger · 14 years ago