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 martin.panter, serhiy.storchaka
Date 2015-01-26.21:34:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422308079.14.0.124539148403.issue23326@psf.upfronthosting.co.za>
In-reply-to
Content
As far as default __ne__ implementation delegates to __eq__, concrete __ne__ implementations are mostly redundant. They make sens when default __ne__ did not handle non-comparable types correctly, but now it is fixed. Proposed patch removes correct but redundant __ne__ implementations (incorrect implementations were removed in issue21408).
History
Date User Action Args
2015-01-26 21:34:40serhiy.storchakasetrecipients: + serhiy.storchaka, martin.panter
2015-01-26 21:34:39serhiy.storchakasetmessageid: <1422308079.14.0.124539148403.issue23326@psf.upfronthosting.co.za>
2015-01-26 21:34:39serhiy.storchakalinkissue23326 messages
2015-01-26 21:34:38serhiy.storchakacreate