Commit 27a16bc4 authored by Just van Rossum's avatar Just van Rossum

No need to import __builtin__, spotted by Skip.

parent 663bdca0
...@@ -387,10 +387,10 @@ if sys.version_info[:2] < (2, 3): ...@@ -387,10 +387,10 @@ if sys.version_info[:2] < (2, 3):
True = bool(1) True = bool(1)
False = bool(0) False = bool(0)
else: else:
import __builtin__ # Bind the boolean builtins to local names
True = __builtin__.True True = True
False = __builtin__.False False = False
bool = __builtin__.bool bool = bool
if __name__ == "__main__": if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment