summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_defaultdict.py
Commit message (Collapse)AuthorAgeFilesLines
* - Patch 1433928:Guido van Rossum2006-02-251-0/+135
- The copy module now "copies" function objects (as atomic objects). - dict.__getitem__ now looks for a __missing__ hook before raising KeyError. - Added a new type, defaultdict, to the collections module. This uses the new __missing__ hook behavior added to dict (see above).