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 rhettinger
Date 2012-03-03.10:10:03
SpamBayes Score 0.0072264825
Marked as misclassified No
Message-id <1330769404.28.0.817906963132.issue14182@psf.upfronthosting.co.za>
In-reply-to
Content
>>> from collections import Counter
>>> x=Counter(a=10,b=0,c=3)
>>> y=Counter(a=10,c=3)
>>> x == y
False
>>> all(x[k]==y[k] for k in set(x) | set(y))
True
History
Date User Action Args
2012-03-03 10:10:04rhettingersetrecipients: + rhettinger
2012-03-03 10:10:04rhettingersetmessageid: <1330769404.28.0.817906963132.issue14182@psf.upfronthosting.co.za>
2012-03-03 10:10:03rhettingerlinkissue14182 messages
2012-03-03 10:10:03rhettingercreate