Python allows you to make a variable called True, which is also a boolean keyword as of recent. Hijinks follow.
>>>TrueTrue >>>True = False>>>TrueFalse >>>while True: print 'foo' break>>>True = 0 == 0>>>TrueTrue >>>while True: print 'foo' breakfoo >>>