1. eaac4f0 Issue 13870: Fix out of date comment. by Raymond Hettinger · 13 years ago
  2. 4e6bf41 Improve Counter.__repr__() to not fail with unorderable values by Raymond Hettinger · 13 years ago
  3. 3d89057 Fix named tuples to work with vars(). by Raymond Hettinger · 13 years ago
  4. a5ac2ce Backport 3.3 fixes and cleans ups. by Raymond Hettinger · 13 years ago
  5. 81b9656 Backport code cleanup for namedtuples. by Raymond Hettinger · 13 years ago
  6. 5db3e01 Minor clean-ups to docstrings, comments, and var names. by Raymond Hettinger · 13 years ago
  7. 296d6d0 Minor text rearrangement. by Raymond Hettinger · 13 years ago
  8. fc330ae Minor text rearrangement. by Raymond Hettinger · 13 years ago
  9. 25458f1 Issue #11875: Alter the previous fix to work better with subclasses by Raymond Hettinger · 13 years ago
  10. d07eaf1 Issue #11875: Alter the previous fix to work better with subclasses by Raymond Hettinger · 13 years ago
  11. 019a97c Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 13 years ago
  12. ab69438 Hmm, __ne__ was missing by Raymond Hettinger · 13 years ago
  13. d08a2c2 Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. by Raymond Hettinger · 13 years ago
  14. c15d9e7 Rework multiset methods to use less memory and to make fewer calls to __hash__. by Raymond Hettinger · 13 years ago
  15. 2876a8c Rework multiset methods to use less memory and to make fewer calls to __hash__. by Raymond Hettinger · 13 years ago
  16. 6c9e5b7 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  17. 1c746c2 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 13 years ago
  18. dcb29c9 Add tests for the collections helper class and sync-up with py3k branch. by Raymond Hettinger · 13 years ago
  19. e660360 Issue #11089: Fix performance issue limiting the use of ConfigParser() by Raymond Hettinger · 13 years ago
  20. 1d879f6 Backport r87613 to make OrderedDict subclassing match dict subclassing. by Raymond Hettinger · 14 years ago
  21. 8dfb928 Backport r87672 and r87615, improving tests, using super() instead of direct parent references, and using __reduce__ method for pickling. by Raymond Hettinger · 14 years ago
  22. ff72816 Supply a reduce method for pickling. by Raymond Hettinger · 14 years ago
  23. 00d43fd Fix doctest to not rely on order of dictionary entries. by Raymond Hettinger · 14 years ago
  24. 345c49b Fix OrderedDic.pop() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  25. 32062e9 Make it easier to extend OrderedDict without breaking it. by Raymond Hettinger · 14 years ago
  26. a673b1f Fix OrderedDict.setdefault() to work for subclasses that define __missing__(). by Raymond Hettinger · 14 years ago
  27. 96f3410 Issue 10667: Fast path for collections.Counter by Raymond Hettinger · 14 years ago
  28. 35c87f2 Issue 9865: add __sizeof__ to OrderedDict. by Raymond Hettinger · 14 years ago
  29. c1cc0d0 Remove unneeded exception chaining. by Raymond Hettinger · 14 years ago
  30. f7328d0 Improve iteration speed by only proxying back links. by Raymond Hettinger · 14 years ago
  31. 98a5f3f Issue 9840: Add reprlib.recursive_repr(), a decorator for handling recursive calls to __repr__ methods. by Raymond Hettinger · 14 years ago
  32. f172529 Put tests in more logical order. by Raymond Hettinger · 14 years ago
  33. c5c29c0 Use weakrefs for both forward and backward links. by Raymond Hettinger · 14 years ago
  34. 69976a7 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  35. dc08a14 Issue #9826: Handle recursive repr in collections.OrderedDict. by Raymond Hettinger · 14 years ago
  36. fa11db0 Issue #9825: Replace OrderedDict.__del__() with weakrefs. by Raymond Hettinger · 14 years ago
  37. bd88802 Revert r84700 which had an unfortunate performance cost. by Raymond Hettinger · 14 years ago
  38. 22b46e0 Separate positional arguments from localized globals. by Raymond Hettinger · 14 years ago
  39. f45abc9 Add method to OrderedDict for repositioning keys to the ends. by Raymond Hettinger · 14 years ago
  40. 7babc1b Better method name. Tighten inner-loop with bound methods. by Raymond Hettinger · 14 years ago
  41. 331722d Make OrderedDict.popitem() a bit smarter and faster by Raymond Hettinger · 14 years ago
  42. 38d17e3 Speed-up cache updates by Raymond Hettinger · 14 years ago
  43. d331ce9 Issue #9507: Named tuple repr will now automatically display the right by Raymond Hettinger · 14 years ago
  44. 5be21b7 Update OrderedDict implementation to match that in Py2.7. by Raymond Hettinger · 14 years ago
  45. fc3c9cd Minor factoring by Raymond Hettinger · 14 years ago
  46. 9c01e44 Add a subtract() method to collections.Counter() by Raymond Hettinger · 14 years ago
  47. 7b0d3c6 Add nice docstrings to namedtuples. by Raymond Hettinger · 14 years ago
  48. da2ecaf Merged revisions 77241 via svnmerge from by Antoine Pitrou · 15 years ago
  49. 77b31ef Issue 6370: Performance issue with collections.Counter(). by Raymond Hettinger · 15 years ago
  50. f909202 Issue 6370: Performance issue with collections.Counter(). by Raymond Hettinger · 15 years ago
  51. 089ba7f Fix field name conflicts for named tuples. by Raymond Hettinger · 15 years ago
  52. 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
  53. 446a4f2 Minor factoring. by Raymond Hettinger · 15 years ago
  54. 2352cf3 Typo. by Raymond Hettinger · 15 years ago
  55. f04fa1b Add docstrings. by Raymond Hettinger · 15 years ago
  56. 2504b7a must provide this method by Benjamin Peterson · 15 years ago
  57. c479170 Replace the localized min/max calls with normal if/else by Raymond Hettinger · 15 years ago
  58. 5614524 Have namedtuple's field renamer assign names that by Raymond Hettinger · 15 years ago
  59. 52dc06b Separate initialization from clearing. by Raymond Hettinger · 15 years ago
  60. 798ee1a Make imported name private and wrap long-line. by Raymond Hettinger · 15 years ago
  61. f173654 Forward port r70533 and r70538. by Raymond Hettinger · 15 years ago
  62. bfb5456 Fix typo by Raymond Hettinger · 15 years ago
  63. 18ed2cb Forward port 70475: Add implementation notes. Put methods in more readable order. by Raymond Hettinger · 15 years ago
  64. dc879f0 Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. by Raymond Hettinger · 15 years ago
  65. 89194ff Now that __keys are fully hidden, switch the underlying structure by Raymond Hettinger · 15 years ago
  66. 14b89ff Fix-up __reduce__ which could not reach the __keys variable indirectly.' by Raymond Hettinger · 15 years ago
  67. 08c70cf Make the underlying data structure more private. by Raymond Hettinger · 15 years ago
  68. a4f52b1 Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 15 years ago
  69. ea9f8db Missed my last update to __eq__ to check matching length. by Raymond Hettinger · 15 years ago
  70. 2d32f63 PEP 372: OrderedDict() by Raymond Hettinger · 15 years ago
  71. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 16 years ago
  72. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  73. 0f05517 Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 16 years ago
  74. dd01f8f Update comments and add an optimized path for Counter.update(). by Raymond Hettinger · 16 years ago
  75. e0d1b9f Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 16 years ago
  76. 4d2073a Forward port r68792 and r68789 putting Counter in __all__ and adding Counter buildouts. by Raymond Hettinger · 16 years ago
  77. b8baf63 Issue #1696199: Add collections.Counter(). by Raymond Hettinger · 16 years ago
  78. c7d484d Remove __long__ methods from UserString and from Demo/ classes. by Mark Dickinson · 16 years ago
  79. e9bbc8b Devil merge! by Benjamin Peterson · 16 years ago
  80. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  81. 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
  82. 23a4a7b The __all__ value for 'collections' was missing UserList and UserString. by Brett Cannon · 16 years ago
  83. b3a65f8 Move UserString to collections. by Raymond Hettinger · 17 years ago
  84. 53dbe39 Move UserList to collections. by Raymond Hettinger · 17 years ago
  85. 1021cc6 No need to register classes that already inherit from ABCs. by Raymond Hettinger · 17 years ago
  86. 554c8b8 Convert test_userdict to use the collections.UserDict. by Raymond Hettinger · 17 years ago
  87. 48b8b66 Put an updated UserDict class in the collections module and by Raymond Hettinger · 17 years ago
  88. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  89. 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
  90. 790c823 Merged revisions 59822-59841 via svnmerge from by Christian Heimes · 17 years ago
  91. 043d6f6 Copied doc for reload() from trunk's function.rst to imp.rst by Christian Heimes · 17 years ago
  92. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  93. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  94. 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
  95. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  96. b9eccbf Merged revisions 59333-59370 via svnmerge from by Christian Heimes · 17 years ago
  97. 053b4f3 Oops, forgot to test this after the merge. by Guido van Rossum · 17 years ago
  98. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  99. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  100. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago