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 aldencolerain, ezio.melotti, georg.brandl, graingert, gregory.p.smith, martin.panter, michael.foord, r.david.murray, rbcollins, rhettinger, serhiy.storchaka, terry.reedy, vitaly
Date 2019-09-21.05:52:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1569045126.2.0.162882831131.issue27071@roundup.psfhosted.org>
In-reply-to
Content
FWIW "assertMultiSetEqual" may be better than "assertPermutation".  The issue with the latter is that distinct but equal values may appear on both sides, so it isn't really a permutation.

   # These don't look like permutations at all
   # but they are equivalent multisets
   assertPermutation([Decimal(3), 5, Fraction(12, 4)], [3.0, 3, Fraction(15, 3)])
History
Date User Action Args
2019-09-21 05:52:06rhettingersetrecipients: + rhettinger, georg.brandl, terry.reedy, gregory.p.smith, rbcollins, ezio.melotti, r.david.murray, michael.foord, martin.panter, serhiy.storchaka, vitaly, graingert, aldencolerain
2019-09-21 05:52:06rhettingersetmessageid: <1569045126.2.0.162882831131.issue27071@roundup.psfhosted.org>
2019-09-21 05:52:06rhettingerlinkissue27071 messages
2019-09-21 05:52:06rhettingercreate