summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
Commit message (Expand)AuthorAgeFilesLines
* Fix namedtuple bug reported by Glenn Linderman. Template did not form correc...Raymond Hettinger2008-09-251-0/+5
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+1
* Issue 3161: Missing import and test.Raymond Hettinger2008-06-231-0/+15
* Issue3065: Fixed pickling of named tuples. Added tests.Raymond Hettinger2008-06-091-1/+20
* Take namedtuple item names only from ascii_letters (this blew up on OSX),Georg Brandl2008-05-181-1/+3
* A DocTestSuite cannot run multiple times: it clears its globals dictionary af...Amaury Forgeot d'Arc2008-04-021-3/+2
* Run doctests on the collections moduleRaymond Hettinger2008-01-111-2/+4
* Add error-checking to namedtuple's _replace() method.Raymond Hettinger2008-01-051-0/+7
* Improve namedtuple's _cast() method with a docstring, new name, and error-che...Raymond Hettinger2008-01-051-4/+7
* Minor fix-ups to named tuples:Raymond Hettinger2008-01-041-8/+1
* Users demand iterable input for named tuples. The author capitulates.Raymond Hettinger2007-12-181-0/+4
* Add more namedtuple() test cases. Neaten the code and comments.Raymond Hettinger2007-12-181-1/+28
* Cleaner method naming conventionRaymond Hettinger2007-12-141-8/+8
* Error checking was too aggressive (reported by Chris Tismer)Raymond Hettinger2007-12-051-0/+1
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-1/+185
* Accept Issac Morland's suggestion for __replace__ to allow multiple replacementsRaymond Hettinger2007-11-151-1/+1
* Add test for __fields__ being read-onlyRaymond Hettinger2007-11-141-0/+8
* Shorter name for namedtuple()Raymond Hettinger2007-10-231-17/+17
* More docs, error messages, and testsRaymond Hettinger2007-10-161-6/+11
* Eliminate camelcase function nameRaymond Hettinger2007-10-081-12/+14
* Add comments to NamedTuple code.Raymond Hettinger2007-10-081-0/+5
* Add __asdict__() to NamedTuple and refine the docs.Raymond Hettinger2007-10-051-0/+2
* Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people c...Raymond Hettinger2007-09-181-0/+6
* Sync-up named tuples with the latest version of the ASPN recipe.Raymond Hettinger2007-09-171-0/+7
* Allow all alphanumeric and underscores in type and field names.Raymond Hettinger2007-05-211-0/+3
* Improvements to NamedTuple's implementation, tests, and documentationRaymond Hettinger2007-05-191-1/+2
* Add collections.NamedTupleRaymond Hettinger2007-03-011-0/+57