1. d7d4fd7 builtin -> built-in. by Georg Brandl · 15 years ago
  2. a68cad1 Fix field name conflicts for named tuples. by Raymond Hettinger · 15 years ago
  3. 9b6f13e Fix-up moving average example. by Raymond Hettinger · 15 years ago
  4. 50f362f Note that ordered dictionaries work with reversed(). by Raymond Hettinger · 15 years ago
  5. f6dab95 Make the doctests in the docs pass, except for those in the turtle module. by Georg Brandl · 16 years ago
  6. c4f4697 Fix the count of datatypes. by Raymond Hettinger · 16 years ago
  7. c473c5a Add note on using keyword arguments with OrderedDict. by Raymond Hettinger · 16 years ago
  8. 6df48a3 Update docs for namedtuple's renaming change. by Raymond Hettinger · 16 years ago
  9. 6bc94cb Improve examples for collections.deque() by Raymond Hettinger · 16 years ago
  10. 2cef1a5 Add MutableSet example. by Raymond Hettinger · 16 years ago
  11. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 16 years ago
  12. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  13. a07038d Fix markup. by Raymond Hettinger · 16 years ago
  14. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 16 years ago
  15. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  16. a665853 Clarify Counter() docs. by Raymond Hettinger · 16 years ago
  17. eb7cbb9 Restore Py2.x version of sample call to super(). by Raymond Hettinger · 16 years ago
  18. f746a1f Fix-up intro paragraph for collections docs. by Raymond Hettinger · 16 years ago
  19. e4ae63c Clean-up named tuple docs. by Raymond Hettinger · 16 years ago
  20. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 16 years ago
  21. 939a3cc Tweak the docs for Counter() objects. by Raymond Hettinger · 16 years ago
  22. d507afd Minor doc fixups. by Raymond Hettinger · 16 years ago
  23. 1712baa Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the table by taking out inherited requirements for abstract methods. by Raymond Hettinger · 16 years ago
  24. d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 16 years ago
  25. 22bfa9e Tweak column alignment for collections docs. by Raymond Hettinger · 16 years ago
  26. 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 16 years ago
  27. 7bdca05 More doc tweaks. by Raymond Hettinger · 16 years ago
  28. 0a1f7b8 Tighten-up the docs for Counter(). by Raymond Hettinger · 16 years ago
  29. 4571f34 Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 16 years ago
  30. acdc84a Beautify and cleanup the references section. by Raymond Hettinger · 16 years ago
  31. 196a0f7 Fix typos. by Raymond Hettinger · 16 years ago
  32. 230dd27 Don't disrupt automatic url target name generation by Raymond Hettinger · 16 years ago
  33. bad1eb2 Build-outs for Counter() class: by Raymond Hettinger · 16 years ago
  34. 2950bca Fix-up indentation of sample code blocks for namedtuple mthod definitions. by Raymond Hettinger · 16 years ago
  35. 5989412 Minor doc tweaks. by Raymond Hettinger · 16 years ago
  36. fbcf749 Add table of idioms/patterns for using Counter objects. by Raymond Hettinger · 16 years ago
  37. 8278385 Minor documentation tweaks and simpler update() example. by Raymond Hettinger · 16 years ago
  38. aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 16 years ago
  39. f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 16 years ago
  40. 7044b11 Remove tabs from the documentation. by Georg Brandl · 16 years ago
  41. c62ef8b Remove trailing whitespace. by Georg Brandl · 16 years ago
  42. df9bcf1 Fix typo. by Georg Brandl · 16 years ago
  43. 061d2e2 #4392: fix parameter name. by Georg Brandl · 16 years ago
  44. 5c4e006 document that deque indexing is O(n) #4123 by Benjamin Peterson · 16 years ago
  45. b40890d usage by Skip Montanaro · 16 years ago
  46. dbc5987 Add missing ABCs to list. by Georg Brandl · 16 years ago
  47. ee51cff Fix whitespace in example code. by Raymond Hettinger · 16 years ago
  48. e98839a Issue3065: Fixed pickling of named tuples. Added tests. by Raymond Hettinger · 16 years ago
  49. 96b4240 Fix typo by Raymond Hettinger · 16 years ago
  50. 5a9fed7 Fix-up the enumerate type example and move it to the end. by Raymond Hettinger · 17 years ago
  51. c7b0592 reformat some documentation of classes so methods and attributes are under the class directive by Benjamin Peterson · 17 years ago
  52. d289ea6 #2502: add example how to do enum types with named tuples. by Georg Brandl · 17 years ago
  53. 4c8bbe6 Make collections' doctests executable. by Georg Brandl · 17 years ago
  54. 907a720 A lot more typo fixes by Ori Avtalion. by Georg Brandl · 17 years ago
  55. bc4ffc1 Backport ABC docs by Raymond Hettinger · 17 years ago
  56. 9bba7b7 Removed an unnecessary and confusing paragraph from the namedtuple docs. by Raymond Hettinger · 17 years ago
  57. 0fe6ca4 Better variable name in an example. by Raymond Hettinger · 17 years ago
  58. 171f391 Minor wordsmithing. by Raymond Hettinger · 17 years ago
  59. e805782 Fix-up half-written paragraph in the docs by Raymond Hettinger · 17 years ago
  60. f59e962 Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full. by Raymond Hettinger · 17 years ago
  61. d1ef854 Run doctests on the collections module by Raymond Hettinger · 17 years ago
  62. 15b5e55 Neaten-up the named tuple docs by Raymond Hettinger · 17 years ago
  63. e850c46 Clarify how to add a field to a named tuple. by Raymond Hettinger · 17 years ago
  64. e165508 Examples for named tuple subclassing should include __slots__ by Raymond Hettinger · 17 years ago
  65. dc1854d Fix typo by Raymond Hettinger · 17 years ago
  66. e11230e Syntax highlighting only works when >>> lines are accompanied by ... lines by Raymond Hettinger · 17 years ago
  67. ac5742e Docs on named tuple's naming conventions and limits of subclassing by Raymond Hettinger · 17 years ago
  68. f6b769b Documentation nits. by Raymond Hettinger · 17 years ago
  69. f5e8af1 Use get() instead of pop() for the optimized version of _replace(). by Raymond Hettinger · 17 years ago
  70. fb3ced6 Minor markup fix by Raymond Hettinger · 17 years ago
  71. 9a35921 Cleanup named tuple subclassing example. by Raymond Hettinger · 17 years ago
  72. b3255ed Restore "somenamedtuple" as the "class" for named tuple attrs. by Georg Brandl · 17 years ago
  73. 503f293 Clean up markup. by Georg Brandl · 17 years ago
  74. dc55f35 Add another named tuple subclassing example. by Raymond Hettinger · 17 years ago
  75. 1db6f80 Cleanup subclassing example to more clearly show fixed-width print format. by Raymond Hettinger · 17 years ago
  76. b8e0072 Add subclassing example to docs for named tuples. by Raymond Hettinger · 17 years ago
  77. 1166872 Small code simplification. Forgot that classmethods can be called from intances. by Raymond Hettinger · 17 years ago
  78. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 17 years ago
  79. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 17 years ago
  80. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 17 years ago
  81. b19be57 Some cleanup in the docs. by Georg Brandl · 17 years ago
  82. 85dfcf3 Users demand iterable input for named tuples. The author capitulates. by Raymond Hettinger · 17 years ago
  83. 8777bca Simplify and speedup _asdict() for named tuples. by Raymond Hettinger · 17 years ago
  84. 88880b2 Add more namedtuple() test cases. Neaten the code and comments. by Raymond Hettinger · 17 years ago
  85. e846f38 Add usage note by Raymond Hettinger · 17 years ago
  86. 07ae83f Faster and simpler _replace() method by Raymond Hettinger · 17 years ago
  87. 48eca67 Add line spacing for readability by Raymond Hettinger · 17 years ago
  88. 42da874 Cleaner method naming convention by Raymond Hettinger · 17 years ago
  89. 04a9a0e Simplify implementation of __replace__() by Raymond Hettinger · 17 years ago
  90. 8465ae8 Fix signature in example by Raymond Hettinger · 17 years ago
  91. bc69349 Add example for use cases requiring default values. by Raymond Hettinger · 17 years ago
  92. 7c3738e Example of multiple replacements. by Raymond Hettinger · 17 years ago
  93. 213ae01 Fixup example in docs. by Raymond Hettinger · 17 years ago
  94. 5681cbc Small improvement to the implementation of __replace__(). by Raymond Hettinger · 17 years ago
  95. eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 17 years ago
  96. abfd8df More docs, error messages, and tests by Raymond Hettinger · 17 years ago
  97. 6899586 Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques. by Raymond Hettinger · 17 years ago
  98. a48a299 Eliminate camelcase function name by Raymond Hettinger · 17 years ago
  99. b6893f2 Missed a line in the docs by Raymond Hettinger · 17 years ago
  100. 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 17 years ago