1. 20994f1 Issue #22609: Constructors and update methods of mapping classes in the by Serhiy Storchaka · 11 years ago
  2. 749022d Issue #22340: Fix test_collections if the sets module was already imported by Victor Stinner · 11 years ago
  3. a3acea3 Issue #22340: Fix Python 3 warnings in Python 2 tests by Victor Stinner · 11 years ago
  4. f643b9a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 11 years ago
  5. 7c57385 Issue #16373: Prevent infinite recursion for ABC Set class comparisons. by Serhiy Storchaka · 12 years ago
  6. 7393c69 Issue #18015: Fix unpickling of 2.7.3 and 2.7.4 namedtuples. by Raymond Hettinger · 12 years ago
  7. 0801d73 Issue #15535: Fix regression in pickling of named tuples. by Raymond Hettinger · 12 years ago
  8. 45b0829 Fix named tuples to work with vars(). by Raymond Hettinger · 14 years ago
  9. 37c0fe5 Fix minor subclassing issue with collections.Counter by Raymond Hettinger · 14 years ago
  10. 8ebebd8 Raymond-Hettingers-MacBook-Pro:py27 raymondhettinger$ cat svn-commit.tmp by Raymond Hettinger · 15 years ago
  11. 1fea5c4 Merged revisions 86857 via svnmerge from by Alexander Belopolsky · 15 years ago
  12. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  13. 74f869e Issue 9826: OrderedDict.__repr__ did not play well with self-referencing dicts. by Raymond Hettinger · 15 years ago
  14. 9128732 Merged revisions 84301 via svnmerge from by Daniel Stutzbach · 15 years ago
  15. a54b2da Issue #9626: Fix views in collections.OrderedDict(). by Raymond Hettinger · 15 years ago
  16. 42add99 Merged revisions 82821 via svnmerge from by Mark Dickinson · 15 years ago
  17. eb318d3 return NotImplemented from Mapping when comparing to a non-mapping #8729 by Benjamin Peterson · 15 years ago
  18. 34c35b2 Add subtract() method to collections.Counter() objects. by Raymond Hettinger · 15 years ago
  19. 47627d5 #7624: Fix isinstance(foo(), collections.Callable) for old-style classes. by Florent Xicluna · 15 years ago
  20. f28fd24 Issue 6292: for the moment at least, the test suite passes if run by R. David Murray · 15 years ago
  21. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 16 years ago
  22. b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
  23. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  24. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  25. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  26. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  27. cb73bda Revert r73401 per Raymond Hettinger's request. by Alexandre Vassalotti · 16 years ago
  28. 450ae57 Make pickling of OrderedDict instances more efficient. by Alexandre Vassalotti · 16 years ago
  29. a68cad1 Fix field name conflicts for named tuples. by Raymond Hettinger · 16 years ago
  30. 756ab67 Have namedtuple's field renamer assign names that by Raymond Hettinger · 16 years ago
  31. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 16 years ago
  32. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 16 years ago
  33. 131af65 Backport 70140, 70141, 70143, and 70144. by Raymond Hettinger · 16 years ago
  34. f17f81d Beef-up tests. by Raymond Hettinger · 16 years ago
  35. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  36. 8c56f88 Backport 69934: Register xrange() as a Sequence. by Raymond Hettinger · 16 years ago
  37. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 17 years ago
  38. f779e6f Issue 4920: Fixed next() vs __next__() issues in the ABCs by Raymond Hettinger · 17 years ago
  39. 0a1f7b8 Tighten-up the docs for Counter(). 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. bad1eb2 Build-outs for Counter() class: by Raymond Hettinger · 17 years ago
  42. afd112b Add tests for __init__() and update() with no args. by Raymond Hettinger · 17 years ago
  43. aaa6e63 Simplify Counter() API. Replace items keyword argument by Raymond Hettinger · 17 years ago
  44. f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
  45. 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
  46. 48361f5 Issue 2235: Py3k warnings are now emitted for classes that will no longer inherit a__hash__ implementation from a parent class in Python 3.x. The standard library and test suite have been updated to not emit these warnings. by Nick Coghlan · 17 years ago
  47. 4c52f52 Issue 3161: Missing import and test. by Raymond Hettinger · 17 years ago
  48. e98839a Issue3065: Fixed pickling of named tuples. Added tests. by Raymond Hettinger · 17 years ago
  49. 0bb0299 Take namedtuple item names only from ascii_letters (this blew up on OSX), by Georg Brandl · 17 years ago
  50. cb0f2ad A DocTestSuite cannot run multiple times: it clears its globals dictionary after the first run. by Amaury Forgeot d'Arc · 17 years ago
  51. d1ef854 Run doctests on the collections module by Raymond Hettinger · 18 years ago
  52. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 18 years ago
  53. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 18 years ago
  54. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 18 years ago
  55. 85dfcf3 Users demand iterable input for named tuples. The author capitulates. by Raymond Hettinger · 18 years ago
  56. 88880b2 Add more namedtuple() test cases. Neaten the code and comments. by Raymond Hettinger · 18 years ago
  57. 42da874 Cleaner method naming convention by Raymond Hettinger · 18 years ago
  58. 2e1af25 Error checking was too aggressive (reported by Chris Tismer) by Raymond Hettinger · 18 years ago
  59. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 18 years ago
  60. eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 18 years ago
  61. b5e5d07 Add test for __fields__ being read-only by Raymond Hettinger · 18 years ago
  62. 01a0957 Shorter name for namedtuple() by Raymond Hettinger · 18 years ago
  63. abfd8df More docs, error messages, and tests by Raymond Hettinger · 18 years ago
  64. a48a299 Eliminate camelcase function name by Raymond Hettinger · 18 years ago
  65. 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 18 years ago
  66. a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 18 years ago
  67. 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
  68. d36a60e Sync-up named tuples with the latest version of the ASPN recipe. by Raymond Hettinger · 18 years ago
  69. 767debb Allow all alphanumeric and underscores in type and field names. by Raymond Hettinger · 18 years ago
  70. 5a41daf Improvements to NamedTuple's implementation, tests, and documentation by Raymond Hettinger · 18 years ago
  71. c37e5e0 Add collections.NamedTuple by Raymond Hettinger · 18 years ago