tests: Add further tests for mpz code.

This commit is contained in:
Damien George
2015-10-01 18:49:37 +01:00
parent 2f4e8511cd
commit a81539db25
9 changed files with 63 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
i = 123456789012345678901234567890
print(i >> 1)
print(i >> 1000)
# result needs rounding up
print(-(1<<70) >> 80)