summaryrefslogtreecommitdiffstats
path: root/BROKEN
Commit message (Collapse)AuthorAgeFilesLines
* Fix the last two tests.Guido van Rossum2007-02-221-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 Cannon2007-02-221-1/+1
|
* Remove test_dumbdbm as failing.Brett Cannon2007-02-221-1/+1
|
* Fix test_importhooks for dict views.Brett Cannon2007-02-221-1/+0
|
* Fix test_iter after the dict views conversion.Brett Cannon2007-02-221-1/+1
|
* Fix test_iterlen by returning the iterator of dict views. Problem is thatBrett Cannon2007-02-221-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 Cannon2007-02-211-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 Cannon2007-02-211-1/+1
|
* Fix test_os from breakage due to dict views.Brett Cannon2007-02-211-1/+0
|
* Fix plistlib to work with dict views.Brett Cannon2007-02-211-1/+1
|
* Some more test now pass.Guido van Rossum2007-02-151-2/+1
|
* Fix for test_dict.py, thanks to Eduardo O Padoan.Guido van Rossum2007-02-141-1/+1
|
* List of broken tests at this time. If you fix a test, please update this file.Guido van Rossum2007-02-131-0/+4
|
* Get rid of empty file.Guido van Rossum2006-08-241-1/+0
|
* Change the way __hash__ is inherited; when __eq__ or __cmp__ is overriddenGuido van Rossum2006-08-211-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 brokenThomas Wouters2006-08-211-17/+0
|
* etree_c not broken any more.Alex Martelli2006-08-211-16/+0
|
* etree unittest not broken any moreAlex Martelli2006-08-211-11/+0
|
* minidom is fixed.Guido van Rossum2006-08-211-8/+0
|
* Fix comparing complex to non-complex numbers.Guido van Rossum2006-08-211-28/+0
|
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-0/+28
|
* For posterity, here's a list of currently failing tests in py3k.Guido van Rossum2006-08-171-0/+112