summaryrefslogtreecommitdiff
path: root/Lib/test/test_pow.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-03 08:44:02 +0000
committerTim Peters <tim.peters@gmail.com>2001-09-03 08:44:02 +0000
commit3b532885b916d1d63a4c525a0648110dc9f28885 (patch)
treede8bf75b47b1b1265b6c015362fa55ea0bac0912 /Lib/test/test_pow.py
parent82797c78af962233c2a78c5378f1e9f6ddf9d676 (diff)
downloadcpython-3b532885b916d1d63a4c525a0648110dc9f28885.tar.gz
Restore a line deleted by mistake.
Diffstat (limited to 'Lib/test/test_pow.py')
-rw-r--r--Lib/test/test_pow.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py
index 41911bf570..b315bd5111 100644
--- a/Lib/test/test_pow.py
+++ b/Lib/test/test_pow.py
@@ -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
+