Message234618
Particular case of this bug:
>>> class A:
... def __eq__(self, other): return NotImplemented
...
>>> A().__eq__(object())
NotImplemented
>>> A().__ne__(object())
True
The second result should be NotImplemented.
Martin's patch LGTM except few style nitpicks to tests. |
|
Date |
User |
Action |
Args |
2015-01-24 15:31:45 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, exarkun, benjamin.peterson, Arfrever, r.david.murray, flox, martin.panter, josh.r |
2015-01-24 15:31:45 | serhiy.storchaka | set | messageid: <1422113505.79.0.597500768967.issue21408@psf.upfronthosting.co.za> |
2015-01-24 15:31:45 | serhiy.storchaka | link | issue21408 messages |
2015-01-24 15:31:45 | serhiy.storchaka | create | |
|