This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients michael.foord, rhettinger
Date 2010-10-30.05:26:09
SpamBayes Score 1.767283e-05
Marked as misclassified No
Message-id <1288416372.65.0.387803067469.issue10242@psf.upfronthosting.co.za>
In-reply-to
Content
class T(unittest.TestCase):
    def test_items_equal(self):
        # this test fails, but should succeed
        a = [{2,4}, {1,2}]
        b = a[::-1]
        self.assertItemsEqual(a, b)

This method has a fast-path using sorted() and a slow-path that doesn't care about cross-type comparisons.  The fast-path is incorrect though and gets the wrong answer in the above test case.
History
Date User Action Args
2010-10-30 05:26:13rhettingersetrecipients: + rhettinger, michael.foord
2010-10-30 05:26:12rhettingersetmessageid: <1288416372.65.0.387803067469.issue10242@psf.upfronthosting.co.za>
2010-10-30 05:26:10rhettingerlinkissue10242 messages
2010-10-30 05:26:09rhettingercreate