Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -8/+8 |
| | |||||
* | Issue 6637: defaultdict.copy() failed with an empty factory. | Raymond Hettinger | 2009-08-04 | 1 | -0/+7 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -12/+12 |
| | |||||
* | issue 2045: Infinite recursion when printing a subclass of defaultdict, | Amaury Forgeot d'Arc | 2008-02-08 | 1 | -0/+23 |
| | | | | | | if default_factory is set to a bound method. Will backport. | ||||
* | Deprecate BaseException.message as per PEP 352. | Brett Cannon | 2007-05-05 | 1 | -1/+1 |
| | |||||
* | A test case for the defaultdict KeyError bug. | Georg Brandl | 2007-03-06 | 1 | -0/+9 |
| | |||||
* | Check for a common user error with defaultdict(). | Raymond Hettinger | 2007-02-07 | 1 | -3/+4 |
| | |||||
* | Add test_main() methods. These three tests were never run | Georg Brandl | 2006-07-27 | 1 | -1/+5 |
| | | | | | | by regrtest.py. We really need a simpler testing framework. | ||||
* | - Patch 1433928: | Guido van Rossum | 2006-02-25 | 1 | -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). |