Message255350
This is due to the fact that Python 3 added the ability to define only __eq__ and get a free __ne__ defined. If my memory serves me right, functools.total_ordering was added in 3.2 and then backported to 2.x - where the relationship with __eq__ and __ne__ is not present. total_ordering doesn't do anything to touch __ne__ as it expects Python itself to do so (which it doesn't in 2.x). |
|
Date |
User |
Action |
Args |
2015-11-25 13:39:44 | abarry | set | recipients:
+ abarry, David Seddon |
2015-11-25 13:39:44 | abarry | set | messageid: <1448458784.25.0.248750701927.issue25732@psf.upfronthosting.co.za> |
2015-11-25 13:39:44 | abarry | link | issue25732 messages |
2015-11-25 13:39:44 | abarry | create | |
|