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 flox
Recipients flox, michael.foord, r.david.murray
Date 2012-08-29.13:34:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346247276.39.0.0827911034485.issue15810@psf.upfronthosting.co.za>
In-reply-to
Content
you're probably right.
I will continue to use assertSequenceEqual for my use cases.
Actually, what confused me is that these assertions are True:


class T(tuple): pass
class L(list): pass

assertEqual(T('ab'), tuple('ab'))
assertEqual(L('ab'), list('ab'))

And when these tests fail, the output is not pretty formatted.
History
Date User Action Args
2012-08-29 13:34:36floxsetrecipients: + flox, r.david.murray, michael.foord
2012-08-29 13:34:36floxsetmessageid: <1346247276.39.0.0827911034485.issue15810@psf.upfronthosting.co.za>
2012-08-29 13:34:35floxlinkissue15810 messages
2012-08-29 13:34:35floxcreate