Python 2.x allows heterogeneous types to be compared.
A useful shortcut (in Python 2.7 here) is that None compares smaller than any integer or float value:
>>> None < float('-inf') < -sys.maxint * 2l < -sys.maxint
True
And in Python 2.7 an empty tuple () is an infinite value:
>>> () > float('inf') > sys.maxint
True
This shortcut is useful when one might sort a mixed list of ints and floats and want to have an absolute minimum and maximum to reference.
This shortcut has been removed in Python 3000 however (this is Python 3.2):
>>> None < 0
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unorderable types: NoneType() < int()
Furthermore, Python3000 has removed sys.maxint on the theory that all ints promote to longs and the limit no longer applies.
PEP 326, A Case for Top and Bottom Values, advanced a reference min and max in Python. The new ordering behavior documented.
Since PEP 326 was rejected, what are useful, useable definitions for a min and max value that work with integers and floats and longs on Python 2X and Python 3000?
Edit
Several answers are along the lines of "just use maxv=float('inf')"... The reason I am thinking, however remote the possibility, is this:
>>> float(2**5000)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: long int too large to convert to float
And:
>>> cmp(1.0**4999,10.0**5000)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: (34, 'Result too large')
Yet:
>>> () > 2**5000
True
In order to cmp to a float value, float('inf'), the long value would need to be converted to a float and the conversion would cause an OverflowError...
Conclusion
Thank you everyone for your answers and comments. I picked TryPyPy's answer because it seemed most inline with what I was asking: an absolute greatest and absolute least value as described in the Wikipedia entry on infinity.
With this question, I learned that a long or int value is not converted to a float in order to complete the comparison of float('inf') > 2**5000. I did not know that.

float("inf")or, if you need a number,sys.float_info.max? – Lattyware May 14 '12 at 1:26intperiod. All integers are nowlong, which is why it was renamed. – Ignacio Vazquez-Abrams May 14 '12 at 3:55float('inf')with 10**1000 should not raise OverflowError. – Mark Dickinson May 14 '12 at 5:54