Commit 3ea0f91e authored by Boxiang Sun's avatar Boxiang Sun

add more test to long

parent 50f5d024
......@@ -61,6 +61,13 @@ print 0 ** (1 << 100)
print pow(1 << 30, 1 << 30, 127)
print pow(1L << 30, 1L << 30, 127)
print pow(1 << 100, 1 << 100, 1000)
print pow(-1, (1<<100))
print pow(-1, (1<<100) + 1)
print pow(0, (1<<100))
print pow(1, (1<<100))
print pow(5, 3, -7L)
print pow(-5, 3, 7L)
print pow(-5, 3, -7L)
print (11L).__pow__(32, 50L)
print (11L).__index__()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment