diff options
| author | Paul Sokolovsky | 2015-11-22 22:11:01 +0200 |
|---|---|---|
| committer | Paul Sokolovsky | 2015-11-22 22:11:01 +0200 |
| commit | 4120f32292090bd811165fe76780e4e74e3450b9 (patch) | |
| tree | 7c1c6ae1c503e49279ba4061862af390c489db77 /tests/basics/int_big_xor.py | |
| parent | b3be4710aaa53429c78d03a86e9be909dca923c0 (diff) | |
tests/int_big_*: Add more tests for result normalization.
Tested by comparability to small int/casting to bool.
Diffstat (limited to 'tests/basics/int_big_xor.py')
| -rw-r--r-- | tests/basics/int_big_xor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/basics/int_big_xor.py b/tests/basics/int_big_xor.py index 2dc260daa..1c6278b29 100644 --- a/tests/basics/int_big_xor.py +++ b/tests/basics/int_big_xor.py @@ -6,3 +6,4 @@ a = 0xfffffffffffffffffffffffffffff print(a ^ (1 << 100)) print(a ^ (1 << 200)) print(a ^ a == 0) +print(bool(a ^ a)) |
