Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace normalization. | Tim Peters | 2007-03-12 | 1 | -5/+5 |
| | |||||
* | Patch #1678088: convert test_operations to use unittest, fold the result ↵ | Collin Winter | 2007-03-12 | 1 | -0/+71 |
| | | | | into test_dict. | ||||
* | Fix a bug in test_dict and test_userdict, found at the PyPy sprint. | Georg Brandl | 2007-03-04 | 1 | -3/+3 |
| | |||||
* | SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses | Raymond Hettinger | 2007-02-07 | 1 | -0/+8 |
| | |||||
* | Bug #1576657: when setting a KeyError for a tuple key, make sure that | Georg Brandl | 2006-10-29 | 1 | -0/+10 |
| | | | | the tuple isn't used as the "exception arguments tuple". | ||||
* | Use absolute imports | Neal Norwitz | 2006-04-03 | 1 | -1/+1 |
| | |||||
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 1 | -0/+50 |
| | | | | | | | | - 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). | ||||
* | Expand scope to include general mapping protocol tests. | Raymond Hettinger | 2004-09-30 | 1 | -0/+13 |
| | | | | | | Many of these tests are redundant, but this will ensure that the mapping protocols all stay in sync. Also, added a test for dictionary subclasses. | ||||
* | Add missing test_dict.py from patch #736962. | Walter Dörwald | 2004-09-30 | 1 | -0/+404 |