diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-10-12 07:15:55 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-10-12 07:15:55 (GMT) |
commit | cb5b5bac11165e8bca4f518c8de8ebfa96601e14 (patch) | |
tree | a022f83575e41675bee3575f262f694b4da337ba /Lib | |
parent | 1d120619d475b1b892585b812dc0d28bd389d097 (diff) | |
download | cpython-cb5b5bac11165e8bca4f518c8de8ebfa96601e14.zip cpython-cb5b5bac11165e8bca4f518c8de8ebfa96601e14.tar.gz cpython-cb5b5bac11165e8bca4f518c8de8ebfa96601e14.tar.bz2 |
A Mystery: I somehow managed to delete the last two lines of my test_math.py
changes. Here restoring them.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_math.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 1f31dc5..1452035 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") |