Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
ff002b93057d1ba8662caed8f9bcbb643fe66c8a
/
.
/
Lib
/
idlelib
/
boolcheck.py
blob: bc988d7b6806a0278e9405760eeafd98e7618a0d [
file
] [
log
] [
blame
]
"boolcheck - import this module to ensure True, False, bool() builtins exist."
try
:
True
except
NameError
:
import
__builtin__
__builtin__
.
True
=
1
__builtin__
.
False
=
0
from
operator
import
truth
__builtin__
.
bool
=
truth