judy2k / stupid-python-tricks

Stupid Python tricks.
The Unlicense
144 stars 27 forks source link

Fixed Python 3 compatibility for <number>-ish #10

Closed snoack closed 9 years ago

snoack commented 9 years ago

I just realized that __cmp__ is gone in Python 3. So this PR uses __eq__ and __lt__ along with the total_ordering decorator to make NumberIsh work with Python 3.3+ as well as Python 2.7.