From: Tim Peters Date: Thu, 12 Oct 2000 07:15:55 +0000 (+0000) Subject: A Mystery: I somehow managed to delete the last two lines of my test_math.py X-Git-Tag: v2.0~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb5b5bac11165e8bca4f518c8de8ebfa96601e14;p=python A Mystery: I somehow managed to delete the last two lines of my test_math.py changes. Here restoring them. --- diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 1f31dc5794..1452035bc5 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -181,3 +181,5 @@ try: x = math.sqrt(-1.0) except ValueError: pass +else: + raise TestFailed("sqrt(-1) didn't raise ValueError")