Python 2.7 Проверьте, нет ли переменная.

>>> NoneType = type(None)
>>> x = None
>>> type(x) == NoneType
True
>>> isinstance(x, NoneType)
True
Evil Echidna