214179b430
This is intended to improve coverage of the test suite.
12 lines
161 B
Python
12 lines
161 B
Python
# tests for bool objects
|
|
|
|
# basic logic
|
|
print(not False)
|
|
print(not True)
|
|
print(False and True)
|
|
print(False or True)
|
|
|
|
# unary operators
|
|
print(+True)
|
|
print(-True)
|