1. 71431ef Backport part of r86217: Fix issues when building without threads by Amaury Forgeot d'Arc · 15 years ago
  2. 74f869e Issue 9826: OrderedDict.__repr__ did not play well with self-referencing dicts. by Raymond Hettinger · 15 years ago
  3. 2039753 Issue #9825: Remove __del__() from OrderedDict. by Raymond Hettinger · 15 years ago
  4. a54b2da Issue #9626: Fix views in collections.OrderedDict(). by Raymond Hettinger · 15 years ago
  5. fdf1b56 Minor factoring by Raymond Hettinger · 15 years ago
  6. 34c35b2 Add subtract() method to collections.Counter() objects. by Raymond Hettinger · 15 years ago
  7. dd2fedc Factor-out constant expressions by Raymond Hettinger · 15 years ago
  8. 6b96ecb Improve clear() method. Keeps key/value refcnts >= 1 until final dict.clear() so that decrefs to zero won't trigger arbitrary code . Also runs a bit faster. by Raymond Hettinger · 15 years ago
  9. 3928276 Clear cyclical references in list based OrderedDict. by Raymond Hettinger · 15 years ago
  10. e30bc38 Improve code clarity a bit. by Raymond Hettinger · 15 years ago
  11. aba2293 Have links in OrderedDicts be native Python lists instead by Raymond Hettinger · 15 years ago
  12. 9bd3508 Add nicer docstrings to namedtuples(). by Raymond Hettinger · 15 years ago
  13. 7d4b759 Remove unused import. by Georg Brandl · 16 years ago
  14. 5dfc7f9 Issue 6370: Performance issue with collections.Counter(). by Raymond Hettinger · 16 years ago
  15. cb73bda Revert r73401 per Raymond Hettinger's request. by Alexandre Vassalotti · 16 years ago
  16. 450ae57 Make pickling of OrderedDict instances more efficient. by Alexandre Vassalotti · 16 years ago
  17. a68cad1 Fix field name conflicts for named tuples. by Raymond Hettinger · 16 years ago
  18. 7c67b03 using sys._getframe(x), where x > 0 doesnt' work on IronPython by Benjamin Peterson · 16 years ago
  19. 1355a3d Minor factoring. by Raymond Hettinger · 16 years ago
  20. a5cd637 Add docstrings. by Raymond Hettinger · 16 years ago
  21. e3bc557 Replace the localized min/max calls with normal if/else by Raymond Hettinger · 16 years ago
  22. 756ab67 Have namedtuple's field renamer assign names that by Raymond Hettinger · 16 years ago
  23. 2dc90fd Separate initialization from clearing. by Raymond Hettinger · 16 years ago
  24. e5b7856 Make imported name private and wrap long-line. by Raymond Hettinger · 16 years ago
  25. 906f95e Move initialization of root link to __init__. by Raymond Hettinger · 16 years ago
  26. f1e2df9 Add more comments. Improve variable names. by Raymond Hettinger · 16 years ago
  27. c8e81ef Fix typo by Raymond Hettinger · 16 years ago
  28. e980d2d * Add implementation notes. by Raymond Hettinger · 16 years ago
  29. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 16 years ago
  30. 2124599 Improve implementation with better underlying data structure by Raymond Hettinger · 16 years ago
  31. a61ae69 Use mixin methods where possible. (2.7 only -- these don't all exist in 3.0) by Raymond Hettinger · 16 years ago
  32. 131af65 Backport 70140, 70141, 70143, and 70144. by Raymond Hettinger · 16 years ago
  33. 0b15541 Minor simplification. by Raymond Hettinger · 16 years ago
  34. 9353ea2 Make the underlying data structure more private. by Raymond Hettinger · 16 years ago
  35. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 16 years ago
  36. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  37. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 16 years ago
  38. ecf252a Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 17 years ago
  39. 1bc1c8a Update comments and add an optimized path for Counter.update(). by Raymond Hettinger · 17 years ago
  40. 4571f34 Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 17 years ago
  41. ae3f068 Make merging easier by formattng comment blocks the same in Py3.1 by Raymond Hettinger · 17 years ago
  42. 562a4ad Add Counter() to __all__. by Raymond Hettinger · 17 years ago
  43. bad1eb2 Build-outs for Counter() class: by Raymond Hettinger · 17 years ago
  44. 35288c6 Speed-up __repr__. Eliminate duplicate tests. Use a from-irmport. by Raymond Hettinger · 17 years ago
  45. 783d73f Fixup and simplify docstrings and doctests. by Raymond Hettinger · 17 years ago
  46. aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 17 years ago
  47. f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
  48. 6ee7bc0 Fix namedtuple bug reported by Glenn Linderman. Template did not form correctly if the field names were input in Unicode. by Raymond Hettinger · 17 years ago
  49. e98839a Issue3065: Fixed pickling of named tuples. Added tests. by Raymond Hettinger · 17 years ago
  50. 3c2523c Issue 2903: Add __name__ in globals for namedtuple namespace. by Raymond Hettinger · 17 years ago
  51. 15b5e55 Neaten-up the named tuple docs by Raymond Hettinger · 18 years ago
  52. e850c46 Clarify how to add a field to a named tuple. by Raymond Hettinger · 18 years ago
  53. e165508 Examples for named tuple subclassing should include __slots__ by Raymond Hettinger · 18 years ago
  54. 5816714 Expand comment. by Raymond Hettinger · 18 years ago
  55. f5e8af1 Use get() instead of pop() for the optimized version of _replace(). by Raymond Hettinger · 18 years ago
  56. 9a35921 Cleanup named tuple subclassing example. by Raymond Hettinger · 18 years ago
  57. dc55f35 Add another named tuple subclassing example. by Raymond Hettinger · 18 years ago
  58. 1db6f80 Cleanup subclassing example to more clearly show fixed-width print format. by Raymond Hettinger · 18 years ago
  59. b8e0072 Add subclassing example to docs for named tuples. by Raymond Hettinger · 18 years ago
  60. 844f71b Speed-up named tuple's _make() constructor. by Raymond Hettinger · 18 years ago
  61. 1166872 Small code simplification. Forgot that classmethods can be called from intances. by Raymond Hettinger · 18 years ago
  62. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 18 years ago
  63. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 18 years ago
  64. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 18 years ago
  65. 85dfcf3 Users demand iterable input for named tuples. The author capitulates. by Raymond Hettinger · 18 years ago
  66. 8777bca Simplify and speedup _asdict() for named tuples. by Raymond Hettinger · 18 years ago
  67. 88880b2 Add more namedtuple() test cases. Neaten the code and comments. by Raymond Hettinger · 18 years ago
  68. 07ae83f Faster and simpler _replace() method by Raymond Hettinger · 18 years ago
  69. 48eca67 Add line spacing for readability by Raymond Hettinger · 18 years ago
  70. 42da874 Cleaner method naming convention by Raymond Hettinger · 18 years ago
  71. bc288e8 Small speedup by Raymond Hettinger · 18 years ago
  72. 04a9a0e Simplify implementation of __replace__() by Raymond Hettinger · 18 years ago
  73. 2e1af25 Error checking was too aggressive (reported by Chris Tismer) by Raymond Hettinger · 18 years ago
  74. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 18 years ago
  75. 5681cbc Small improvement to the implementation of __replace__(). by Raymond Hettinger · 18 years ago
  76. eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 18 years ago
  77. 78f27e0 Make __fields__ read-only. Suggested by Issac Morland by Raymond Hettinger · 18 years ago
  78. 01a0957 Shorter name for namedtuple() by Raymond Hettinger · 18 years ago
  79. abfd8df More docs, error messages, and tests by Raymond Hettinger · 18 years ago
  80. 050afbf Improve error messages by Raymond Hettinger · 18 years ago
  81. 163f622 Make the error messages more specific by Raymond Hettinger · 18 years ago
  82. a48a299 Eliminate camelcase function name by Raymond Hettinger · 18 years ago
  83. 0e1d606 Better variable names by Raymond Hettinger · 18 years ago
  84. 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 18 years ago
  85. a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 18 years ago
  86. 2b03d45 Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people can see how it works. by Raymond Hettinger · 18 years ago
  87. d36a60e Sync-up named tuples with the latest version of the ASPN recipe. by Raymond Hettinger · 18 years ago
  88. 767debb Allow all alphanumeric and underscores in type and field names. by Raymond Hettinger · 18 years ago
  89. 0d6a8cc Replace assertion with straight error-checking. by Raymond Hettinger · 18 years ago
  90. f3241a3 Fix beginner mistake -- don't mix spaces and tabs. by Raymond Hettinger · 18 years ago
  91. 5a41daf Improvements to NamedTuple's implementation, tests, and documentation by Raymond Hettinger · 18 years ago
  92. c37e5e0 Add collections.NamedTuple by Raymond Hettinger · 18 years ago
  93. eb97988 Prepare collections module for pure python code entries. by Raymond Hettinger · 18 years ago