On Tue, May 27, 2008 at 3:19 AM, Junio C Hamano [off-list ref] wrote:
I think I spotted a bug in Python documentation, by the way ;-)
http://docs.python.org/ref/ref.html does not even list "True" and "False"
in its section 2.4 (Literals) yet, and that document is for version 2.5.2.
That's because they aren't literals. They are, in fact, objects, and
redefinable objects at that.
Try:
True=False
print True
Dave.