Last Updated: February 25, 2016
·
1.649K
· forivall

Reason #68 to switch to Python 3

bpython
>>> None < float('-inf')
True

bpython3
>>> None < float('-inf')
TypeError: unorderable types: NoneType() < float()