diff options
| author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-31 16:03:23 +0000 |
|---|---|---|
| committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-31 16:03:23 +0000 |
| commit | 6655e4bc2752f1114a2e1f9a63ffd4191fa50d0d (patch) | |
| tree | 94c162d82dacd500b7e59403255c8af854b38f51 /Lib/idlelib/boolcheck.py | |
| parent | 9532298c82d8384a6c469136ac87842990ec10dd (diff) | |
| download | cpython-git-6655e4bc2752f1114a2e1f9a63ffd4191fa50d0d.tar.gz | |
Whitespace Normalization
Diffstat (limited to 'Lib/idlelib/boolcheck.py')
| -rw-r--r-- | Lib/idlelib/boolcheck.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/boolcheck.py b/Lib/idlelib/boolcheck.py index bc988d7b68..f682232e49 100644 --- a/Lib/idlelib/boolcheck.py +++ b/Lib/idlelib/boolcheck.py @@ -1,5 +1,5 @@ "boolcheck - import this module to ensure True, False, bool() builtins exist." -try: +try: True except NameError: import __builtin__ @@ -7,4 +7,3 @@ except NameError: __builtin__.False = 0 from operator import truth __builtin__.bool = truth - |
