From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 29 Jan 2025 21:16:47 +0000 (+0100) Subject: [3.12] gh-125522: Fix bare except in `test_uuid` (GH-129018) (#129456) X-Git-Tag: v3.12.9~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0ae83af95df3de49802f02977cc937ad855fc29;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-125522: Fix bare except in `test_uuid` (GH-129018) (#129456) gh-125522: Fix bare except in `test_uuid` (GH-129018) (cherry picked from commit a1a4e9f39ad86359e148fd193089b3b2a354f71d) Co-authored-by: Tomas R --- diff --git a/Lib/test/test_uuid.py b/Lib/test/test_uuid.py index 9cec1e87fd3c..08359a336f2f 100755 --- a/Lib/test/test_uuid.py +++ b/Lib/test/test_uuid.py @@ -19,7 +19,7 @@ def importable(name): try: __import__(name) return True - except: + except ModuleNotFoundError: return False