From: neonene <53406459+neonene@users.noreply.github.com> Date: Sat, 3 Aug 2024 13:15:26 +0000 (+0900) Subject: gh-122334: Fix test_embed failure when missing _ssl module (GH-122630) X-Git-Tag: v3.14.0a1~894 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50b36037518a8e7f7eee39b597d56b5b2756eb86;p=thirdparty%2FPython%2Fcpython.git gh-122334: Fix test_embed failure when missing _ssl module (GH-122630) Co-authored-by: Wulian233 <1055917385@qq.com> --- diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index ab112d6be85b..916a9a79887d 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -465,8 +465,12 @@ class EmbeddingTests(EmbeddingTestsMixin, unittest.TestCase): # Test _PyArg_Parser initializations via _PyArg_UnpackKeywords() # https://github.com/python/cpython/issues/122334 code = textwrap.dedent(""" - import _ssl - _ssl.txt2obj(txt='1.3') + try: + import _ssl + except ModuleNotFoundError: + _ssl = None + if _ssl is not None: + _ssl.txt2obj(txt='1.3') print('1') import _queue