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, serhiy.storchaka
Date 2020-07-26.19:27:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595791623.07.0.485628357585.issue41397@roundup.psfhosted.org>
In-reply-to
Content
> The current code returns NotImplemented for non-Counter.
> If we want to implement equality comparison with other 
> class we have to override __ne__.

I'm fine with that.  It is not an undue burden and it provides a nudge to be explicit and intentional about the decision.

Setting __ne__ = object.__ne__ is a neat trick, but it is surprising given
Counter's __mro__ and it loses the helpful docstring describing the effect of zero counts.
History
Date User Action Args
2020-07-26 19:27:03rhettingersetrecipients: + rhettinger, serhiy.storchaka
2020-07-26 19:27:03rhettingersetmessageid: <1595791623.07.0.485628357585.issue41397@roundup.psfhosted.org>
2020-07-26 19:27:03rhettingerlinkissue41397 messages
2020-07-26 19:27:03rhettingercreate