Message233827
There is a bit of analysis of the object.__ne__() implementation in Issue 4395. If my understanding is correct, I think it is a bug that object.__ne__(self, other) evaluates “not self == other”. It should evaluate “not self.__eq__(other)” instead, so that NotImplemented can be caught, allowing the reflected other.__ne__(self) method to be tried. |
|
Date |
User |
Action |
Args |
2015-01-11 00:29:01 | martin.panter | set | recipients:
+ martin.panter, exarkun, benjamin.peterson, r.david.murray, flox, josh.r |
2015-01-11 00:29:01 | martin.panter | set | messageid: <1420936141.12.0.339051333798.issue21408@psf.upfronthosting.co.za> |
2015-01-11 00:29:01 | martin.panter | link | issue21408 messages |
2015-01-11 00:29:01 | martin.panter | create | |
|