Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix the last two tests. | Guido van Rossum | 2007-02-22 | 1 | -1/+0 |
| | | | | | | Thanks to Brett for fixing so many before! I see some tracebacks from threads when testing test_bsddbd3 (on OSX) but the test claims to pass, so I'm ignoring these. | ||||
* | Fix test_bsddb3 (along with something bsddb) to work with dict views. | Brett Cannon | 2007-02-22 | 1 | -1/+1 |
| | |||||
* | Remove test_dumbdbm as failing. | Brett Cannon | 2007-02-22 | 1 | -1/+1 |
| | |||||
* | Fix test_importhooks for dict views. | Brett Cannon | 2007-02-22 | 1 | -1/+0 |
| | |||||
* | Fix test_iter after the dict views conversion. | Brett Cannon | 2007-02-22 | 1 | -1/+1 |
| | |||||
* | Fix test_iterlen by returning the iterator of dict views. Problem is that | Brett Cannon | 2007-02-22 | 1 | -1/+1 |
| | | | | | | | | iteritems and itervalues' previous object were both an iterator *and* and iterable. The tests expected an iterator but were given an iterable. Should the 2to3 conversion for iter(values|items|keys) change the code to ``iter(dict.keys())`` to be more compatible? | ||||
* | Fix xml.dom.minidom so it works again after the dict views introduction. | Brett Cannon | 2007-02-21 | 1 | -1/+1 |
| | | | | | | | There are some methods in minidom that return dict.keys() directly. There were left alone since the tests passed without touching them, but it might be prudent to just wrap them in a 'list' call to be safe for people expecting a list. | ||||
* | Fix test_mutants for dict views. | Brett Cannon | 2007-02-21 | 1 | -1/+1 |
| | |||||
* | Fix test_os from breakage due to dict views. | Brett Cannon | 2007-02-21 | 1 | -1/+0 |
| | |||||
* | Fix plistlib to work with dict views. | Brett Cannon | 2007-02-21 | 1 | -1/+1 |
| | |||||
* | Some more test now pass. | Guido van Rossum | 2007-02-15 | 1 | -2/+1 |
| | |||||
* | Fix for test_dict.py, thanks to Eduardo O Padoan. | Guido van Rossum | 2007-02-14 | 1 | -1/+1 |
| | |||||
* | List of broken tests at this time. If you fix a test, please update this file. | Guido van Rossum | 2007-02-13 | 1 | -0/+4 |
| | |||||
* | Get rid of empty file. | Guido van Rossum | 2006-08-24 | 1 | -1/+0 |
| | |||||
* | Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden | Guido van Rossum | 2006-08-21 | 1 | -60/+1 |
| | | | | | but __hash__ is not, set __hash__ explicitly to None (and tp_hash to NULL). All unit tests pass now! | ||||
* | test_gc is no longer broken | Thomas Wouters | 2006-08-21 | 1 | -17/+0 |
| | |||||
* | etree_c not broken any more. | Alex Martelli | 2006-08-21 | 1 | -16/+0 |
| | |||||
* | etree unittest not broken any more | Alex Martelli | 2006-08-21 | 1 | -11/+0 |
| | |||||
* | minidom is fixed. | Guido van Rossum | 2006-08-21 | 1 | -8/+0 |
| | |||||
* | Fix comparing complex to non-complex numbers. | Guido van Rossum | 2006-08-21 | 1 | -28/+0 |
| | |||||
* | Get rid of most of the rest of coerce (slot is still there for now). | Neal Norwitz | 2006-08-21 | 1 | -0/+28 |
| | |||||
* | For posterity, here's a list of currently failing tests in py3k. | Guido van Rossum | 2006-08-17 | 1 | -0/+112 |