From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 19 Oct 2024 12:14:18 +0000 (+0200) Subject: [3.13] gh-125522: Fix bare except in test_math.testTan (GH-125544) (#125726) X-Git-Tag: v3.13.1~273 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96db216181e69222414155ec7140da8b313d4cca;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-125522: Fix bare except in test_math.testTan (GH-125544) (#125726) gh-125522: Fix bare except in test_math.testTan (GH-125544) (cherry picked from commit 4b421e8aca7f2dccc5ac8604b78589941dd7974c) Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> --- diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 8ba507cb2b02..96ec55a09b0b 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -1886,7 +1886,7 @@ class MathTests(unittest.TestCase): try: self.assertTrue(math.isnan(math.tan(INF))) self.assertTrue(math.isnan(math.tan(NINF))) - except: + except ValueError: self.assertRaises(ValueError, math.tan, INF) self.assertRaises(ValueError, math.tan, NINF) self.assertTrue(math.isnan(math.tan(NAN)))