blob: f682232e4958784a046d593cfe2b27d53a1abe86 [file] [log] [blame]
Tony Lowndsf53dec22002-12-20 04:24:43 +00001"boolcheck - import this module to ensure True, False, bool() builtins exist."
Kurt B. Kaiser6655e4b2002-12-31 16:03:23 +00002try:
Tony Lowndsf53dec22002-12-20 04:24:43 +00003 True
4except NameError:
5 import __builtin__
6 __builtin__.True = 1
7 __builtin__.False = 0
8 from operator import truth
9 __builtin__.bool = truth