commit | 6655e4bc2752f1114a2e1f9a63ffd4191fa50d0d | [log] [tgz] |
---|---|---|
author | Kurt B. Kaiser <kbk@shore.net> | Tue Dec 31 16:03:23 2002 +0000 |
committer | Kurt B. Kaiser <kbk@shore.net> | Tue Dec 31 16:03:23 2002 +0000 |
tree | 94c162d82dacd500b7e59403255c8af854b38f51 | |
parent | 9532298c82d8384a6c469136ac87842990ec10dd [diff] [blame] |
Whitespace Normalization
diff --git a/Lib/idlelib/boolcheck.py b/Lib/idlelib/boolcheck.py index bc988d7..f682232 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 @@ __builtin__.False = 0 from operator import truth __builtin__.bool = truth -