On 8/23/2013 7:38 PM, jeangaw...@gmail.com wrote:
Python allows you set the value of True
Unqualified 'Python', used in the present tense, refers to the latest
release or repository version.
>>> True = 1.3
SyntaxError: assignment to keyword
True = 1.3
Now this is consistent with the decision to let you set the
value of various builtin names. But why is this case different:
None = 1.3
File "<stdin>", line 1
SyntaxError: cannot assign to None
--
Terry Jan Reedy
--
http://mail.python.org/mailman/listinfo/python-list