Whitespace normalization.

This commit is contained in:
Tim Peters 2006-11-03 02:32:46 +00:00
parent be1bc3b63a
commit abd8a336a3
12 changed files with 21 additions and 21 deletions

View file

@ -152,7 +152,7 @@ class MathTests(unittest.TestCase):
testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
def testPow(self):
self.assertRaises(TypeError, math.pow)
self.ftest('pow(0,1)', math.pow(0,1), 0)