Restore a line deleted by mistake.

This commit is contained in:
Tim Peters 2001-09-03 08:44:02 +00:00
parent 32f453eaa4
commit 0628a66c75

View file

@ -117,3 +117,5 @@ for i in range(-10, 11):
if j >= 0 and k != 0:
o = pow(long(i),j) % k
n = pow(long(i),j,k)
if o != n: print 'Integer mismatch:', i,j,k