diff options
Diffstat (limited to 'Lib/idlelib/boolcheck.py')
-rw-r--r-- | Lib/idlelib/boolcheck.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/idlelib/boolcheck.py b/Lib/idlelib/boolcheck.py deleted file mode 100644 index f682232..0000000 --- a/Lib/idlelib/boolcheck.py +++ /dev/null @@ -1,9 +0,0 @@ -"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 |