blob: bc988d7b6806a0278e9405760eeafd98e7618a0d [file] [log] [blame]
Tony Lowndsf53dec22002-12-20 04:24:43 +00001"boolcheck - import this module to ensure True, False, bool() builtins exist."
2try:
3 True
4except NameError:
5 import __builtin__
6 __builtin__.True = 1
7 __builtin__.False = 0
8 from operator import truth
9 __builtin__.bool = truth
10