3ab6aa3a6d
Tests which don't work with small ints are suffixed with _intbig.py. Some of these may still work with long long ints and need to be reclassified later.
7 lines
84 B
Python
7 lines
84 B
Python
# test builtin abs
|
|
|
|
print(abs(False))
|
|
print(abs(True))
|
|
print(abs(1))
|
|
print(abs(-1))
|