diff options
-rw-r--r-- | src/script/scons-time.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/script/scons-time.py b/src/script/scons-time.py index 6c43e29..fa04d37 100644 --- a/src/script/scons-time.py +++ b/src/script/scons-time.py @@ -49,15 +49,13 @@ try: False except NameError: # Pre-2.2 Python has no False keyword. - import __builtin__ - __builtin__.False = not 1 + False = not 1 try: True except NameError: # Pre-2.2 Python has no True keyword. - import __builtin__ - __builtin__.True = not 0 + True = not 0 try: sorted @@ -83,7 +81,6 @@ except NameError: if reverse: result.reverse() return result - __builtin__.sorted = sorted def make_temp_file(**kw): try: |