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 serhiy.storchaka
Recipients davin, jnoller, sbt, serhiy.storchaka
Date 2015-03-29.08:08:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427616489.66.0.397517544696.issue23713@psf.upfronthosting.co.za>
In-reply-to
Content
Why not use just

    self.assertEqual(sorted(it), list(map(sqr, list(range(10)))))

or

    self.assertCountEqual(list(it), list(map(sqr, list(range(10)))))

?
History
Date User Action Args
2015-03-29 08:08:09serhiy.storchakasetrecipients: + serhiy.storchaka, jnoller, sbt, davin
2015-03-29 08:08:09serhiy.storchakasetmessageid: <1427616489.66.0.397517544696.issue23713@psf.upfronthosting.co.za>
2015-03-29 08:08:09serhiy.storchakalinkissue23713 messages
2015-03-29 08:08:09serhiy.storchakacreate