Python 2.7 Compruebe si la variable es ninguna

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