Representar o infinito como um número inteiro no Python 2.7

Eu estou querendo saber como definirinf e-inf como umint no Python 2.7. Eu tentei e pareceinf e-inf só funciona comofloat.

a = float('-inf') # works
b = float('inf') # works

c = int('-inf') # compile error, ValueError: invalid literal for int() with base 10: 'inf'
d = int('inf') # compile error, ValueError: invalid literal for int() with base 10: 'inf'

questionAnswers(2)

yourAnswerToTheQuestion