summaryrefslogtreecommitdiff
path: root/Lib/test/test_math.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-11-03 02:32:46 +0000
committerTim Peters <tim.peters@gmail.com>2006-11-03 02:32:46 +0000
commitabd8a336a3ab390a2ea4b15a0ecd187e482001af (patch)
treeff6e8502e3fc60d51ee5309d6a01a7b8b6bd76dc /Lib/test/test_math.py
parentbe1bc3b63a0a07af4b204519bb0decd9714ea8ba (diff)
downloadcpython-git-abd8a336a3ab390a2ea4b15a0ecd187e482001af.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r--Lib/test/test_math.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index 1458c82f8c..a45fc3429a 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -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)