Quoted from the docs:
cmp(x, y)Compare the two objects x and y and return an integer according to the outcome. The return value is negative if
x < y, zero ifx == yand strictly positive ifx > y.
I was under the assumption that the return values are always -1, 0, and 1 but the docs don't explicitly say that, only mentioning zero and positive/negative return value.
Are there any situations when the return value of cmp(x,y) is not -1, 0, or 1?
cmp()is advised against, as it is gone in Python 3.x. – Lattyware May 17 '12 at 11:42