diff options
Diffstat (limited to 'Lib/test/test_pow.py')
-rw-r--r-- | Lib/test/test_pow.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py index b315bd5..64c5890 100644 --- a/Lib/test/test_pow.py +++ b/Lib/test/test_pow.py @@ -118,4 +118,3 @@ for i in range(-10, 11): o = pow(long(i),j) % k n = pow(long(i),j,k) if o != n: print 'Integer mismatch:', i,j,k - |