[Python-3000] Status of True, False, bool type

James Thiele python3now at gmail.com
Mon Jan 1 17:31:59 CET 2007


PEP 3100 states:
None becomes a keyword [4] (What about True, False?)

Has a decision been made?
--
Also a bool acts like an int in various contexts. For example:
>>> True == 1
True
>>> False == 0
True
>>> 16 + (0 == 0)
17

Will this behavior continue?


More information about the Python-3000 mailing list