mirror of https://github.com/python/cpython.git
No need to import __builtin__, spotted by Skip.
This commit is contained in:
parent
0ec2744fb8
commit
247e16ef80
|
@ -387,10 +387,10 @@ def __repr__(self):
|
||||||
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__":
|
||||||
|
|
Loading…
Reference in New Issue