1. a35e281 Merge by Raymond Hettinger · 11 years ago
  2. 4f4ba16 Issue #17331: Use isidentifier() instead of isalnum() to check for valid identifiers. by Raymond Hettinger · 11 years ago
  3. 1ba81ee Closes #16613: Added optional mapping argument to ChainMap.new_child. by Vinay Sajip · 12 years ago
  4. 527507d Improve OrderedDict equality test. by Raymond Hettinger · 12 years ago
  5. 1c2018c Small cleanup and optimization by Raymond Hettinger · 12 years ago
  6. 80ed4d4 Minor reformatting (wrap fat lines, etc.) and create an __main__ file by Raymond Hettinger · 12 years ago
  7. 4fd3f0c Merge by Raymond Hettinger · 13 years ago
  8. f1182cd Merge by Raymond Hettinger · 13 years ago
  9. becd568 Issue #13121: Support in-place math operators for collections.Counter(). by Raymond Hettinger · 13 years ago
  10. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  11. c92f622 add ChainMap to __all__ (closes #12959) by Benjamin Peterson · 13 years ago
  12. fcb393c Add support for unary plus and unary minus to collections.Counter() by Raymond Hettinger · 13 years ago
  13. 22cc118 merge by Raymond Hettinger · 13 years ago
  14. 1c7b7f7 Userlist.copy() wasn't returning a UserList. by Raymond Hettinger · 13 years ago
  15. a82aa55 Minor clean-ups to docstrings, comments, and var names. by Raymond Hettinger · 13 years ago
  16. 4f438b7 Minor text rearrangement. by Raymond Hettinger · 13 years ago
  17. f48ac30 Issue #11875: Alter the previous fix to work better with subclasses by Raymond Hettinger · 13 years ago
  18. 98c850a Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 13 years ago
  19. 90375bc Rework multiset methods to use less memory and to make fewer calls to __hash__. by Raymond Hettinger · 13 years ago
  20. b5a40d4 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  21. f6d3e8e Add tests for _source to importable and exec'able. by Raymond Hettinger · 13 years ago
  22. 15d0c1d Minor clean-ups. by Raymond Hettinger · 13 years ago
  23. 2ebea41 Expose the namedtuple source with a _source attribute. by Raymond Hettinger · 13 years ago
  24. 843a751 Move namespace setup inside the template. by Raymond Hettinger · 13 years ago
  25. b2d0945 Minor named tuple clean-ups. by Raymond Hettinger · 13 years ago
  26. fef8546 Factor-out named tuple class definition template strings. by Raymond Hettinger · 13 years ago
  27. 74b015e Clean-up whitespace. by Raymond Hettinger · 13 years ago
  28. 3e82ae0 Replace **locals() with explicit field names. by Raymond Hettinger · 13 years ago
  29. 9a3f4cb Simplify the named tuple template by using the new string format syntax. by Raymond Hettinger · 13 years ago
  30. 50105d3 Improve readability by replacing '\n' in template with real newlines. by Raymond Hettinger · 13 years ago
  31. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  32. d032131 Add __bool__ method. Add tests. Fix-up broken test. by Raymond Hettinger · 13 years ago
  33. 9fe1ccf Issue #11297: Add collections.ChainMap() by Raymond Hettinger · 13 years ago
  34. cbbaa96 Issue #10516: adding list.clear() and list.copy() methods by Eli Bendersky · 13 years ago
  35. 499e193 Add tests for the _ChainMap helper class. by Raymond Hettinger · 13 years ago
  36. c942310 Factor-out common code for helper classes. by Raymond Hettinger · 13 years ago
  37. 158c9c2 Issue #11085: Moved collections abstract base classes into a separate module by Raymond Hettinger · 13 years ago[Renamed (98%) from Lib/collections.py]
  38. ddb5240 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 13 years ago
  39. ff72816 Supply a reduce method for pickling. by Raymond Hettinger · 14 years ago
  40. 00d43fd Fix doctest to not rely on order of dictionary entries. by Raymond Hettinger · 14 years ago
  41. 345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  42. 32062e9 Make it easier to extend OrderedDict without breaking it. by Raymond Hettinger · 14 years ago
  43. a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  44. 96f3410 Issue 10667: Fast path for collections.Counter by Raymond Hettinger · 14 years ago
  45. 35c87f2 Issue 9865: add __sizeof__ to OrderedDict. by Raymond Hettinger · 14 years ago
  46. c1cc0d0 Remove unneeded exception chaining. by Raymond Hettinger · 14 years ago
  47. f7328d0 Improve iteration speed by only proxying back links. by Raymond Hettinger · 14 years ago
  48. 98a5f3f Issue 9840: Add reprlib.recursive_repr(), a decorator for handling recursive calls to __repr__ methods. by Raymond Hettinger · 14 years ago
  49. f172529 Put tests in more logical order. by Raymond Hettinger · 14 years ago
  50. c5c29c0 Use weakrefs for both forward and backward links. by Raymond Hettinger · 14 years ago
  51. dc08a14 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  52. fa11db0 Issue #9825: Replace OrderedDict.__del__() with weakrefs. by Raymond Hettinger · 14 years ago
  53. bd88802 Revert r84700 which had an unfortunate performance cost. by Raymond Hettinger · 14 years ago
  54. 22b46e0 Separate positional arguments from localized globals. by Raymond Hettinger · 14 years ago
  55. f45abc9 Add method to OrderedDict for repositioning keys to the ends. by Raymond Hettinger · 14 years ago
  56. 7babc1b Better method name. Tighten inner-loop with bound methods. by Raymond Hettinger · 14 years ago
  57. 331722d Make OrderedDict.popitem() a bit smarter and faster by Raymond Hettinger · 14 years ago
  58. 38d17e3 Speed-up cache updates by Raymond Hettinger · 14 years ago
  59. d331ce9 Issue #9507: Named tuple repr will now automatically display the right by Raymond Hettinger · 14 years ago
  60. 5be21b7 Update OrderedDict implementation to match that in Py2.7. by Raymond Hettinger · 14 years ago
  61. fc3c9cd Minor factoring by Raymond Hettinger · 14 years ago
  62. 9c01e44 Add a subtract() method to collections.Counter() by Raymond Hettinger · 14 years ago
  63. 7b0d3c6 Add nice docstrings to namedtuples. by Raymond Hettinger · 14 years ago
  64. da2ecaf Merged revisions 77241 via svnmerge from by Antoine Pitrou · 15 years ago
  65. f909202 Issue 6370: Performance issue with collections.Counter(). by Raymond Hettinger · 15 years ago
  66. 089ba7f Fix field name conflicts for named tuples. by Raymond Hettinger · 15 years ago
  67. 25c95f1 Merged revisions 70768,71657,71721,71729,71794,71976,72036-72037,72079,72085,72131-72134,72191,72197-72198,72219,72221,72225,72303,72434,72467,72476 via svnmerge from by Benjamin Peterson · 15 years ago
  68. 446a4f2 Minor factoring. by Raymond Hettinger · 15 years ago
  69. 2352cf3 Typo. by Raymond Hettinger · 15 years ago
  70. f04fa1b Add docstrings. by Raymond Hettinger · 15 years ago
  71. 2504b7a must provide this method by Benjamin Peterson · 15 years ago
  72. c479170 Replace the localized min/max calls with normal if/else by Raymond Hettinger · 15 years ago
  73. 5614524 Have namedtuple's field renamer assign names that by Raymond Hettinger · 15 years ago
  74. 52dc06b Separate initialization from clearing. by Raymond Hettinger · 15 years ago
  75. 798ee1a Make imported name private and wrap long-line. by Raymond Hettinger · 15 years ago
  76. f173654 Forward port r70533 and r70538. by Raymond Hettinger · 15 years ago
  77. bfb5456 Fix typo by Raymond Hettinger · 15 years ago
  78. 18ed2cb Forward port 70475: Add implementation notes. Put methods in more readable order. by Raymond Hettinger · 15 years ago
  79. dc879f0 Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. by Raymond Hettinger · 15 years ago
  80. 89194ff Now that __keys are fully hidden, switch the underlying structure by Raymond Hettinger · 15 years ago
  81. 14b89ff Fix-up __reduce__ which could not reach the __keys variable indirectly.' by Raymond Hettinger · 15 years ago
  82. 08c70cf Make the underlying data structure more private. by Raymond Hettinger · 15 years ago
  83. a4f52b1 Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 15 years ago
  84. ea9f8db Missed my last update to __eq__ to check matching length. by Raymond Hettinger · 15 years ago
  85. 2d32f63 PEP 372: OrderedDict() by Raymond Hettinger · 15 years ago
  86. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 15 years ago
  87. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  88. 0f05517 Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 16 years ago
  89. dd01f8f Update comments and add an optimized path for Counter.update(). by Raymond Hettinger · 16 years ago
  90. e0d1b9f Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 16 years ago
  91. 4d2073a Forward port r68792 and r68789 putting Counter in __all__ and adding Counter buildouts. by Raymond Hettinger · 16 years ago
  92. b8baf63 Issue #1696199: Add collections.Counter(). by Raymond Hettinger · 16 years ago
  93. c7d484d Remove __long__ methods from UserString and from Demo/ classes. by Mark Dickinson · 16 years ago
  94. e9bbc8b Devil merge! by Benjamin Peterson · 16 years ago
  95. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  96. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  97. 23a4a7b The __all__ value for 'collections' was missing UserList and UserString. by Brett Cannon · 16 years ago
  98. b3a65f8 Move UserString to collections. by Raymond Hettinger · 16 years ago
  99. 53dbe39 Move UserList to collections. by Raymond Hettinger · 16 years ago
  100. 1021cc6 No need to register classes that already inherit from ABCs. by Raymond Hettinger · 16 years ago