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

@@ -0,0 +1,8 @@
# test bignum power
i = 1 << 65
print(0 ** i)
print(i ** 0)
print(i ** 1)
print(i ** 2)