From: Tim Peters Date: Mon, 3 Sep 2001 08:44:02 +0000 (+0000) Subject: Restore a line deleted by mistake. X-Git-Tag: v2.2a3~145 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0628a66c75761ffac87564d05eddc00c194c316d;p=thirdparty%2FPython%2Fcpython.git Restore a line deleted by mistake. --- diff --git a/Lib/test/test_pow.py b/Lib/test/test_pow.py index 41911bf570a2..b315bd511189 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 +