suse-su-2022:2174-1
Vulnerability from csaf_suse
Published
2022-06-24 09:35
Modified
2022-06-24 09:35
Summary
Security update for python39

Notes

Title of the patch
Security update for python39
Description of the patch
This update for python39 fixes the following issues: - CVE-2015-20107: avoid command injection in the mailcap module (bsc#1198511). - Update to 3.9.13: - Core and Builtins - gh-92311: Fixed a bug where setting frame.f_lineno to jump over a list comprehension could misbehave or crash. - gh-92112: Fix crash triggered by an evil custom mro() on a metaclass. - gh-92036: Fix a crash in subinterpreters related to the garbage collector. When a subinterpreter is deleted, untrack all objects tracked by its GC. To prevent a crash in deallocator functions expecting objects to be tracked by the GC, leak a strong reference to these objects on purpose, so they are never deleted and their deallocator functions are not called. Patch by Victor Stinner. - gh-91421: Fix a potential integer overflow in _Py_DecodeUTF8Ex. - bpo-46775: Some Windows system error codes(>= 10000) are now mapped into the correct errno and may now raise a subclass of OSError. Patch by Dong-hee Na. - bpo-46962: Classes and functions that unconditionally declared their docstrings ignoring the --without-doc-strings compilation flag no longer do so. - The classes affected are pickle.PickleBuffer, testcapi.RecursingInfinitelyError, and types.GenericAlias. - The functions affected are 24 methods in ctypes. - Patch by Oleg Iarygin. - bpo-36819: Fix crashes in built-in encoders with error handlers that return position less or equal than the starting position of non-encodable characters. - Library - gh-91581: utcfromtimestamp() no longer attempts to resolve fold in the pure Python implementation, since the fold is never 1 in UTC. In addition to being slightly faster in the common case, this also prevents some errors when the timestamp is close to datetime.min. Patch by Paul Ganssle. - gh-92530: Fix an issue that occurred after interrupting threading.Condition.notify(). - gh-92049: Forbid pickling constants re._constants.SUCCESS etc. Previously, pickling did not fail, but the result could not be unpickled. - bpo-47029: Always close the read end of the pipe used by multiprocessing.Queue after the last write of buffered data to the write end of the pipe to avoid BrokenPipeError at garbage collection and at multiprocessing.Queue.close() calls. Patch by Gry Ogam. - gh-91910: Add missing f prefix to f-strings in error messages from the multiprocessing and asyncio modules. - gh-91810: ElementTree method write() and function tostring() now use the text file''s encoding ('UTF-8' if not available) instead of locale encoding in XML declaration when encoding='unicode' is specified. - gh-91832: Add required attribute to argparse.Action repr output. - gh-91734: Fix OSS audio support on Solaris. - gh-91700: Compilation of regular expression containing a conditional expression (?(group)...) now raises an appropriate re.error if the group number refers to not defined group. Previously an internal RuntimeError was raised. - gh-91676: Fix unittest.IsolatedAsyncioTestCase to shutdown the per test event loop executor before returning from its run method so that a not yet stopped or garbage collected executor state does not persist beyond the test. - gh-90568: Parsing \N escapes of Unicode Named Character Sequences in a regular expression raises now re.error instead of TypeError. - gh-91595: Fix the comparison of character and integer inside Tools.gdb.libpython.write_repr(). Patch by Yu Liu. - gh-90622: Worker processes for concurrent.futures.ProcessPoolExecutor are no longer spawned on demand (a feature added in 3.9) when the multiprocessing context start method is 'fork' as that can lead to deadlocks in the child processes due to a fork happening while threads are running. - gh-91575: Update case-insensitive matching in the re module to the latest Unicode version. - gh-91581: Remove an unhandled error case in the C implementation of calls to datetime.fromtimestamp with no time zone (i.e. getting a local time from an epoch timestamp). This should have no user-facing effect other than giving a possibly more accurate error message when called with timestamps that fall on 10000-01-01 in the local time. Patch by Paul Ganssle. - bpo-34480: Fix a bug where _markupbase raised an UnboundLocalError when an invalid keyword was found in marked section. Patch by Marek Suscak. - bpo-27929: Fix asyncio.loop.sock_connect() to only resolve names for socket.AF_INET or socket.AF_INET6 families. Resolution may not make sense for other families, like socket.AF_BLUETOOTH and socket.AF_UNIX. - bpo-43323: Fix errors in the email module if the charset itself contains undecodable/unencodable characters. - bpo-46787: Fix concurrent.futures.ProcessPoolExecutor exception memory leak - bpo-46415: Fix ipaddress.ip_{address,interface,network} raising TypeError instead of ValueError if given invalid tuple as address parameter. - bpo-44911: IsolatedAsyncioTestCase will no longer throw an exception while cancelling leaked tasks. Patch by Bar Harel. - bpo-44493: Add missing terminated NUL in sockaddr_un's length - This was potentially observable when using non-abstract AF_UNIX datagram sockets to processes written in another programming language. - bpo-42627: Fix incorrect parsing of Windows registry proxy settings - bpo-36073: Raise ProgrammingError instead of segfaulting on recursive usage of cursors in sqlite3 converters. Patch by Sergey Fedoseev. - Documentation - gh-91888: Add a new gh role to the documentation to link to GitHub issues. - gh-91783: Document security issues concerning the use of the function shutil.unpack_archive() - gh-91547: Remove 'Undocumented modules' page. - bpo-44347: Clarify the meaning of dirs_exist_ok, a kwarg of shutil.copytree(). - bpo-38668: Update the introduction to documentation for os.path to remove warnings that became irrelevant after the implementations of PEP 383 and PEP 529. - bpo-47138: Pin Jinja to a version compatible with Sphinx version 2.4.4. - bpo-46962: All docstrings in code snippets are now wrapped into PyDoc_STR() to follow the guideline of PEP 7's Documentation Strings paragraph. Patch by Oleg Iarygin. - bpo-26792: Improve the docstrings of runpy.run_module() and runpy.run_path(). Original patch by Andrew Brezovsky. - bpo-45790: Adjust inaccurate phrasing in Defining Extension Types: Tutorial about the ob_base field and the macros used to access its contents. - bpo-42340: Document that in some circumstances KeyboardInterrupt may cause the code to enter an inconsistent state. Provided a sample workaround to avoid it if needed. - bpo-41233: Link the errnos referenced in Doc/library/exceptions.rst to their respective section in Doc/library/errno.rst, and vice versa. Previously this was only done for EINTR and InterruptedError. Patch by Yan 'yyyyyyyan' Orestes. - bpo-38056: Overhaul the Error Handlers documentation in codecs. - bpo-13553: Document tkinter.Tk args. - Tests - gh-91607: Fix test_concurrent_futures to test the correct multiprocessing start method context in several cases where the test logic mixed this up. - bpo-47205: Skip test for sched_getaffinity() and sched_setaffinity() error case on FreeBSD. - bpo-29890: Add tests for ipaddress.IPv4Interface and ipaddress.IPv6Interface construction with tuple arguments. Original patch and tests by louisom. - Build - bpo-47103: Windows PGInstrument builds now copy a required DLL into the output directory, making it easier to run the profile stage of a PGO build. - Windows - bpo-47194: Update zlib to v1.2.12 to resolve CVE-2018-25032. - bpo-46785: Fix race condition between os.stat() and unlinking a file on Windows, by using errors codes returned by FindFirstFileW() when appropriate in win32_xstat_impl. - bpo-40859: Update Windows build to use xz-5.2.5 - Tools/Demos - gh-91583: Fix regression in the code generated by Argument Clinic for functions with the defining_class parameter. - Update to 3.9.12: - bpo-46968: Check for the existence of the 'sys/auxv.h' header in faulthandler to avoid compilation problems in systems where this header doesn't exist. Patch by Pablo Galindo - bpo-47101: hashlib.algorithms_available now lists only algorithms that are provided by activated crypto providers on OpenSSL 3.0. Legacy algorithms are not listed unless the legacy provider has been loaded into the default OSSL context. - bpo-23691: Protect the re.finditer() iterator from re-entering. - bpo-42369: Fix thread safety of zipfile._SharedFile.tell() to avoid a 'zipfile.BadZipFile: Bad CRC-32 for file' exception when reading a ZipFile from multiple threads. - bpo-38256: Fix binascii.crc32() when it is compiled to use zlib'c crc32 to work properly on inputs 4+GiB in length instead of returning the wrong result. The workaround prior to this was to always feed the function data in increments smaller than 4GiB or to just call the zlib module function. - bpo-39394: A warning about inline flags not at the start of the regular expression now contains the position of the flag. - bpo-47061: Deprecate the various modules listed by PEP 594: - aifc, asynchat, asyncore, audioop, cgi, cgitb, chunk, crypt, imghdr, msilib, nntplib, nis, ossaudiodev, pipes, smtpd, sndhdr, spwd, sunau, telnetlib, uu, xdrlib - bpo-2604: Fix bug where doctests using globals would fail when run multiple times. - bpo-45997: Fix asyncio.Semaphore re-aquiring FIFO order. - bpo-47022: The asynchat, asyncore and smtpd modules have been deprecated since at least Python 3.6. Their documentation has now been updated to note they will removed in Python 3.12 (PEP 594). - bpo-46421: Fix a unittest issue where if the command was invoked as python -m unittest and the filename(s) began with a dot (.), a ValueError is returned. - bpo-40296: Fix supporting generic aliases in pydoc. - bpo-14156: argparse.FileType now supports an argument of '-'; in binary mode, returning the .buffer attribute of sys.stdin/sys.stdout as appropriate. Modes including 'x' and 'a' are treated equivalently to 'w' when argument is '-'. Patch contributed by Josh Rosenberg - Update to 3.9.11: - bpo-46852: Rename the private undocumented float.__set_format__() method to float.__setformat__() to fix a typo introduced in Python 3.7. The method is only used by test_float. Patch by Victor Stinner. - bpo-46794: Bump up the libexpat version into 2.4.6 - bpo-46762: Fix an assert failure in debug builds when a '<', '>', or '=' is the last character in an f-string that's missing a closing right brace. - bpo-46732: Correct the docstring for the __bool__() method. Patch by Jelle Zijlstra. - bpo-40479: Add a missing call to va_end() in Modules/_hashopenssl.c. - bpo-46615: When iterating over sets internally in setobject.c, acquire strong references to the resulting items from the set. This prevents crashes in corner-cases of various set operations where the set gets mutated. - bpo-43721: Fix docstrings of getter, setter, and deleter to clarify that they create a new copy of the property. - bpo-46503: Fix an assert when parsing some invalid N escape sequences in f-strings. - bpo-46417: Fix a race condition on setting a type __bases__ attribute: the internal function add_subclass() now gets the PyTypeObject.tp_subclasses member after calling PyWeakref_NewRef() which can trigger a garbage collection which can indirectly modify PyTypeObject.tp_subclasses. Patch by Victor Stinner. - bpo-46383: Fix invalid signature of _zoneinfo's module_free function to resolve a crash on wasm32-emscripten platform. - bpo-43253: Fix a crash when closing transports where the underlying socket handle is already invalid on the Proactor event loop. - bpo-47004: Apply bugfixes from importlib_metadata 4.11.3, including bugfix for EntryPoint.extras, which was returning match objects and not the extras strings. - bpo-46985: Upgrade pip wheel bundled with ensurepip (pip 22.0.4) - bpo-46968: faulthandler: On Linux 5.14 and newer, dynamically determine size of signal handler stack size CPython allocates using getauxval(AT_MINSIGSTKSZ). This changes allows for Python extension's request to Linux kernel to use AMX_TILE instruction set on Sapphire Rapids Xeon processor to succeed, unblocking use of the ISA in frameworks. - bpo-46955: Expose asyncio.base_events.Server as asyncio.Server. Patch by Stefan Zabka. - bpo-46932: Update bundled libexpat to 2.4.7 - bpo-25707: Fixed a file leak in xml.etree.ElementTree.iterparse() when the iterator is not exhausted. Patch by Jacob Walls. - bpo-44886: Inherit asyncio proactor datagram transport from asyncio.DatagramTransport. - bpo-46827: Support UDP sockets in asyncio.loop.sock_connect() for selector-based event loops. Patch by Thomas Grainger. - bpo-46811: Make test suite support Expat >=2.4.5 - bpo-46252: Raise TypeError if ssl.SSLSocket is passed to transport-based APIs. - bpo-46784: Fix libexpat symbols collisions with user dynamically loaded or statically linked libexpat in embedded Python. - bpo-39327: shutil.rmtree() can now work with VirtualBox shared folders when running from the guest operating-system. - bpo-46756: Fix a bug in urllib.request.HTTPPasswordMgr.find_user_password() and urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated() which allowed to bypass authorization. For example, access to URI example.org/foobar was allowed if the user was authorized for URI example.org/foo. - bpo-45863: When the tarfile module creates a pax format archive, it will put an integer representation of timestamps in the ustar header (if possible) for the benefit of older unarchivers, in addition to the existing full-precision timestamps in the pax extended header. - bpo-46672: Fix NameError in asyncio.gather() when initial type check fails. - bpo-45948: Fixed a discrepancy in the C implementation of the xml.etree.ElementTree module. Now, instantiating an xml.etree.ElementTree.XMLParser with a target=None keyword provides a default xml.etree.ElementTree.TreeBuilder target as the Python implementation does. - bpo-46591: Make the IDLE doc URL on the About IDLE dialog clickable. - bpo-46400: expat: Update libexpat from 2.4.1 to 2.4.4 - bpo-46487: Add the get_write_buffer_limits method to asyncio.transports.WriteTransport and to the SSL transport. - bpo-46539: In typing.get_type_hints(), support evaluating stringified ClassVar and Final annotations inside Annotated. Patch by Gregory Beauregard. - bpo-46491: Allow typing.Annotated to wrap typing.Final and typing.ClassVar. Patch by Gregory Beauregard. - bpo-46436: Fix command-line option -d/--directory in module http.server which is ignored when combined with command-line option --cgi. Patch by Gry Ogam. - bpo-41403: Make mock.patch() raise a TypeError with a relevant error message on invalid arg. Previously it allowed a cryptic AttributeError to escape. - bpo-46474: In importlib.metadata.EntryPoint.pattern, avoid potential REDoS by limiting ambiguity in consecutive whitespace. - bpo-46469: asyncio generic classes now return types.GenericAlias in __class_getitem__ instead of the same class. - bpo-46434: pdb now gracefully handles help when __doc__ is missing, for example when run with pregenerated optimized .pyc files. - bpo-46333: The __eq__() and __hash__() methods of typing.ForwardRef now honor the module parameter of typing.ForwardRef. Forward references from different modules are now differentiated. - bpo-43118: Fix a bug in inspect.signature() that was causing it to fail on some subclasses of classes with a __text_signature__ referencing module globals. Patch by Weipeng Hong. - bpo-21987: Fix an issue with tarfile.TarFile.getmember() getting a directory name with a trailing slash. - bpo-20392: Fix inconsistency with uppercase file extensions in MimeTypes.guess_type(). Patch by Kumar Aditya. - bpo-46080: Fix exception in argparse help text generation if a argparse.BooleanOptionalAction argument's default is argparse.SUPPRESS and it has help specified. Patch by Felix Fontein. - bpo-44439: Fix .write() method of a member file in ZipFile, when the input data is an object that supports the buffer protocol, the file length may be wrong. - bpo-45703: When a namespace package is imported before another module from the same namespace is created/installed in a different sys.path location while the program is running, calling the importlib.invalidate_caches() function will now also guarantee the new module is noticed. - bpo-24959: Fix bug where unittest sometimes drops frames from tracebacks of exceptions raised in tests. - bpo-46463: Fixes escape4chm.py script used when building the CHM documentation file - bpo-46913: Fix test_faulthandler.test_sigfpe() if Python is built with undefined behavior sanitizer (UBSAN): disable UBSAN on the faulthandler_sigfpe() function. Patch by Victor Stinner. - bpo-46708: Prevent default asyncio event loop policy modification warning after test_asyncio execution. - bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after completion. - bpo-44359: test_ftplib now silently ignores socket errors to prevent logging unhandled threading exceptions. Patch by Victor Stinner. - bpo-46542: Fix a Python crash in test_lib2to3 when using Python built in debug mode: limit the recursion limit. Patch by Victor Stinner. - bpo-46576: test_peg_generator now disables compiler optimization when testing compilation of its own C extensions to significantly speed up the testing on non-debug builds of CPython. - bpo-46542: Fix test_json tests checking for RecursionError: modify these tests to use support.infinite_recursion(). Patch by Victor Stinner. - bpo-13886: Skip test_builtin PTY tests on non-ASCII characters if the readline module is loaded. The readline module changes input() behavior, but test_builtin is not intented to test the readline module. Patch by Victor Stinner. - bpo-38472: Fix GCC detection in setup.py when cross-compiling. The C compiler is now run with LC_ALL=C. Previously, the detection failed with a German locale. - bpo-46513: configure no longer uses AC_C_CHAR_UNSIGNED macro and pyconfig.h no longer defines reserved symbol __CHAR_UNSIGNED__. - bpo-45925: Update Windows installer to use SQLite 3.37.2. - bpo-45296: Clarify close, quit, and exit in IDLE. In the File menu, 'Close' and 'Exit' are now 'Close Window' (the current one) and 'Exit' is now 'Exit IDLE' (by closing all windows). In Shell, 'quit()' and 'exit()' mean 'close Shell'. If there are no other windows, this also exits IDLE. - bpo-45447: Apply IDLE syntax highlighting to pyi files. Patch by Alex Waygood and Terry Jan Reedy.
Patchnames
SUSE-2022-2174,SUSE-SLE-Module-Basesystem-15-SP3-2022-2174,SUSE-SLE-Module-Development-Tools-15-SP3-2022-2174,openSUSE-SLE-15.3-2022-2174,openSUSE-SLE-15.4-2022-2174
Terms of use
CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).



{
  "document": {
    "aggregate_severity": {
      "namespace": "https://www.suse.com/support/security/rating/",
      "text": "important"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright 2024 SUSE LLC. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "Security update for python39",
        "title": "Title of the patch"
      },
      {
        "category": "description",
        "text": "This update for python39 fixes the following issues:\n\n- CVE-2015-20107: avoid command injection in the mailcap module (bsc#1198511).\n\n- Update to 3.9.13:\n  - Core and Builtins\n    - gh-92311: Fixed a bug where setting frame.f_lineno to jump\n      over a list comprehension could misbehave or crash.\n    - gh-92112: Fix crash triggered by an evil custom mro() on\n      a metaclass.\n    - gh-92036: Fix a crash in subinterpreters related to the\n      garbage collector. When a subinterpreter is deleted,\n      untrack all objects tracked by its GC. To prevent a crash\n      in deallocator functions expecting objects to be tracked by\n      the GC, leak a strong reference to these objects on\n      purpose, so they are never deleted and their deallocator\n      functions are not called. Patch by Victor Stinner.\n    - gh-91421: Fix a potential integer overflow in\n      _Py_DecodeUTF8Ex.\n    - bpo-46775: Some Windows system error codes(\u003e= 10000) are\n      now mapped into the correct errno and may now raise\n      a subclass of OSError. Patch by Dong-hee Na.\n    - bpo-46962: Classes and functions that unconditionally\n      declared their docstrings ignoring the\n      --without-doc-strings compilation flag no longer do so.\n    - The classes affected are pickle.PickleBuffer,\n      testcapi.RecursingInfinitelyError, and types.GenericAlias.\n    - The functions affected are 24 methods in ctypes.\n    - Patch by Oleg Iarygin.\n    - bpo-36819: Fix crashes in built-in encoders with error\n      handlers that return position less or equal than the\n      starting position of non-encodable characters.\n  - Library\n    - gh-91581: utcfromtimestamp() no longer attempts to resolve\n      fold in the pure Python implementation, since the fold is\n      never 1 in UTC. In addition to being slightly faster in the\n      common case, this also prevents some errors when the\n      timestamp is close to datetime.min. Patch by Paul Ganssle.\n    - gh-92530: Fix an issue that occurred after interrupting\n      threading.Condition.notify().\n    - gh-92049: Forbid pickling constants re._constants.SUCCESS\n      etc. Previously, pickling did not fail, but the result\n      could not be unpickled.\n    - bpo-47029: Always close the read end of the pipe used by\n      multiprocessing.Queue after the last write of buffered data\n      to the write end of the pipe to avoid BrokenPipeError at\n      garbage collection and at multiprocessing.Queue.close()\n      calls. Patch by Gry Ogam.\n    - gh-91910: Add missing f prefix to f-strings in error\n      messages from the multiprocessing and asyncio modules.\n    - gh-91810: ElementTree method write() and function\n      tostring() now use the text file\u0027\u0027s encoding (\u0027UTF-8\u0027 if not\n      available) instead of locale encoding in XML declaration\n      when encoding=\u0027unicode\u0027 is specified.\n    - gh-91832: Add required attribute to argparse.Action repr\n      output.\n    - gh-91734: Fix OSS audio support on Solaris.\n    - gh-91700: Compilation of regular expression containing\n      a conditional expression (?(group)...) now raises an\n      appropriate re.error if the group number refers to not\n      defined group. Previously an internal RuntimeError was\n      raised.\n    - gh-91676: Fix unittest.IsolatedAsyncioTestCase to shutdown\n      the per test event loop executor before returning from its\n      run method so that a not yet stopped or garbage collected\n      executor state does not persist beyond the test.\n    - gh-90568: Parsing \\N escapes of Unicode Named Character\n      Sequences in a regular expression raises now re.error\n      instead of TypeError.\n    - gh-91595: Fix the comparison of character and integer\n      inside Tools.gdb.libpython.write_repr(). Patch by Yu Liu.\n    - gh-90622: Worker processes for\n      concurrent.futures.ProcessPoolExecutor are no longer\n      spawned on demand (a feature added in 3.9) when the\n      multiprocessing context start method is \u0027fork\u0027 as that can\n      lead to deadlocks in the child processes due to a fork\n      happening while threads are running.\n    - gh-91575: Update case-insensitive matching in the re module\n      to the latest Unicode version.\n    - gh-91581: Remove an unhandled error case in the\n      C implementation of calls to datetime.fromtimestamp with no\n      time zone (i.e. getting a local time from an epoch\n      timestamp). This should have no user-facing effect other\n      than giving a possibly more accurate error message when\n      called with timestamps that fall on 10000-01-01 in the\n      local time. Patch by Paul Ganssle.\n    - bpo-34480: Fix a bug where _markupbase raised an\n      UnboundLocalError when an invalid keyword was found in\n      marked section. Patch by Marek Suscak.\n    - bpo-27929: Fix asyncio.loop.sock_connect() to only resolve\n      names for socket.AF_INET or socket.AF_INET6 families.\n      Resolution may not make sense for other families, like\n      socket.AF_BLUETOOTH and socket.AF_UNIX.\n    - bpo-43323: Fix errors in the email module if the charset\n      itself contains undecodable/unencodable characters.\n    - bpo-46787: Fix concurrent.futures.ProcessPoolExecutor\n      exception memory leak\n    - bpo-46415: Fix ipaddress.ip_{address,interface,network}\n      raising TypeError instead of ValueError if given invalid\n      tuple as address parameter.\n    - bpo-44911: IsolatedAsyncioTestCase will no longer throw an\n      exception while cancelling leaked tasks. Patch by Bar\n      Harel.\n    - bpo-44493: Add missing terminated NUL in sockaddr_un\u0027s\n      length\n    - This was potentially observable when using non-abstract\n      AF_UNIX datagram sockets to processes written in another\n      programming language.\n    - bpo-42627: Fix incorrect parsing of Windows registry proxy\n      settings\n    - bpo-36073: Raise ProgrammingError instead of segfaulting on\n      recursive usage of cursors in sqlite3 converters. Patch by\n      Sergey Fedoseev.\n  - Documentation\n    - gh-91888: Add a new gh role to the documentation to link to\n      GitHub issues.\n    - gh-91783: Document security issues concerning the use of\n      the function shutil.unpack_archive()\n    - gh-91547: Remove \u0027Undocumented modules\u0027 page.\n    - bpo-44347: Clarify the meaning of dirs_exist_ok, a kwarg of\n      shutil.copytree().\n    - bpo-38668: Update the introduction to documentation for\n      os.path to remove warnings that became irrelevant after the\n      implementations of PEP 383 and PEP 529.\n    - bpo-47138: Pin Jinja to a version compatible with Sphinx\n      version 2.4.4.\n    - bpo-46962: All docstrings in code snippets are now wrapped\n      into PyDoc_STR() to follow the guideline of PEP 7\u0027s\n      Documentation Strings paragraph. Patch by Oleg Iarygin.\n    - bpo-26792: Improve the docstrings of runpy.run_module() and\n      runpy.run_path(). Original patch by Andrew Brezovsky.\n    - bpo-45790: Adjust inaccurate phrasing in Defining Extension\n      Types: Tutorial about the ob_base field and the macros used\n      to access its contents.\n    - bpo-42340: Document that in some circumstances\n      KeyboardInterrupt may cause the code to enter an\n      inconsistent state. Provided a sample workaround to avoid\n      it if needed.\n    - bpo-41233: Link the errnos referenced in\n      Doc/library/exceptions.rst to their respective section in\n      Doc/library/errno.rst, and vice versa. Previously this was\n      only done for EINTR and InterruptedError. Patch by Yan\n      \u0027yyyyyyyan\u0027 Orestes.\n    - bpo-38056: Overhaul the Error Handlers documentation in\n      codecs.\n    - bpo-13553: Document tkinter.Tk args.\n  - Tests\n    - gh-91607: Fix test_concurrent_futures to test the correct\n      multiprocessing start method context in several cases where\n      the test logic mixed this up.\n    - bpo-47205: Skip test for sched_getaffinity() and\n      sched_setaffinity() error case on FreeBSD.\n    - bpo-29890: Add tests for ipaddress.IPv4Interface and\n      ipaddress.IPv6Interface construction with tuple arguments.\n      Original patch and tests by louisom.\n  - Build\n    - bpo-47103: Windows PGInstrument builds now copy a required\n      DLL into the output directory, making it easier to run the\n      profile stage of a PGO build.\n  - Windows\n    - bpo-47194: Update zlib to v1.2.12 to resolve\n      CVE-2018-25032.\n    - bpo-46785: Fix race condition between os.stat() and\n      unlinking a file on Windows, by using errors codes returned\n      by FindFirstFileW() when appropriate in win32_xstat_impl.\n    - bpo-40859: Update Windows build to use xz-5.2.5\n  - Tools/Demos\n    - gh-91583: Fix regression in the code generated by Argument\n      Clinic for functions with the defining_class parameter.\n\n- Update to 3.9.12:\n  - bpo-46968: Check for the existence of the \u0027sys/auxv.h\u0027 header\n    in faulthandler to avoid compilation problems in systems\n    where this header doesn\u0027t exist. Patch by Pablo Galindo\n  - bpo-47101: hashlib.algorithms_available now lists only\n    algorithms that are provided by activated crypto providers on\n    OpenSSL 3.0. Legacy algorithms are not listed unless the\n    legacy provider has been loaded into the default OSSL\n    context.\n  - bpo-23691: Protect the re.finditer() iterator from\n    re-entering.\n  - bpo-42369: Fix thread safety of zipfile._SharedFile.tell() to\n    avoid a \u0027zipfile.BadZipFile: Bad CRC-32 for file\u0027 exception\n    when reading a ZipFile from multiple threads.\n  - bpo-38256: Fix binascii.crc32() when it is compiled to use\n    zlib\u0027c crc32 to work properly on inputs 4+GiB in length\n    instead of returning the wrong result. The workaround prior\n    to this was to always feed the function data in increments\n    smaller than 4GiB or to just call the zlib module function.\n  - bpo-39394: A warning about inline flags not at the start of\n    the regular expression now contains the position of the flag.\n  - bpo-47061: Deprecate the various modules listed by PEP 594:\n  - aifc, asynchat, asyncore, audioop, cgi, cgitb, chunk, crypt,\n    imghdr, msilib, nntplib, nis, ossaudiodev, pipes, smtpd,\n    sndhdr, spwd, sunau, telnetlib, uu, xdrlib\n  - bpo-2604: Fix bug where doctests using globals would fail\n    when run multiple times.\n  - bpo-45997: Fix asyncio.Semaphore re-aquiring FIFO order.\n  - bpo-47022: The asynchat, asyncore and smtpd modules have been\n    deprecated since at least Python 3.6. Their documentation has\n    now been updated to note they will removed in Python 3.12\n    (PEP 594).\n  - bpo-46421: Fix a unittest issue where if the command was\n    invoked as python -m unittest and the filename(s) began with\n    a dot (.), a ValueError is returned.\n  - bpo-40296: Fix supporting generic aliases in pydoc.\n  - bpo-14156: argparse.FileType now supports an argument of \u0027-\u0027;\n    in binary mode, returning the .buffer attribute of\n    sys.stdin/sys.stdout as appropriate. Modes including \u0027x\u0027 and\n    \u0027a\u0027 are treated equivalently to \u0027w\u0027 when argument is \u0027-\u0027.\n    Patch contributed by Josh Rosenberg\n- Update to 3.9.11:\n  - bpo-46852: Rename the private undocumented\n    float.__set_format__() method to float.__setformat__() to fix\n    a typo introduced in Python 3.7. The method is only used by\n    test_float. Patch by Victor Stinner.\n  - bpo-46794: Bump up the libexpat version into 2.4.6\n  - bpo-46762: Fix an assert failure in debug builds when a \u0027\u003c\u0027,\n    \u0027\u003e\u0027, or \u0027=\u0027 is the last character in an f-string that\u0027s\n    missing a closing right brace.\n  - bpo-46732: Correct the docstring for the __bool__() method.\n    Patch by Jelle Zijlstra.\n  - bpo-40479: Add a missing call to va_end() in\n    Modules/_hashopenssl.c.\n  - bpo-46615: When iterating over sets internally in\n    setobject.c, acquire strong references to the resulting items\n    from the set. This prevents crashes in corner-cases of\n    various set operations where the set gets mutated.\n  - bpo-43721: Fix docstrings of getter, setter, and deleter to\n    clarify that they create a new copy of the property.\n  - bpo-46503: Fix an assert when parsing some invalid N escape\n    sequences in f-strings.\n  - bpo-46417: Fix a race condition on setting a type __bases__\n    attribute: the internal function add_subclass() now gets the\n    PyTypeObject.tp_subclasses member after calling\n    PyWeakref_NewRef() which can trigger a garbage collection\n    which can indirectly modify PyTypeObject.tp_subclasses. Patch\n    by Victor Stinner.\n  - bpo-46383: Fix invalid signature of _zoneinfo\u0027s module_free\n    function to resolve a crash on wasm32-emscripten platform.\n  - bpo-43253: Fix a crash when closing transports where the\n    underlying socket handle is already invalid on the Proactor\n    event loop.\n  - bpo-47004: Apply bugfixes from importlib_metadata 4.11.3,\n    including bugfix for EntryPoint.extras, which was returning\n    match objects and not the extras strings.\n  - bpo-46985: Upgrade pip wheel bundled with ensurepip (pip\n    22.0.4)\n  - bpo-46968: faulthandler: On Linux 5.14 and newer, dynamically\n    determine size of signal handler stack size CPython allocates\n    using getauxval(AT_MINSIGSTKSZ). This changes allows for\n    Python extension\u0027s request to Linux kernel to use AMX_TILE\n    instruction set on Sapphire Rapids Xeon processor to succeed,\n    unblocking use of the ISA in frameworks.\n  - bpo-46955: Expose asyncio.base_events.Server as\n    asyncio.Server. Patch by Stefan Zabka.\n  - bpo-46932: Update bundled libexpat to 2.4.7\n  - bpo-25707: Fixed a file leak in\n    xml.etree.ElementTree.iterparse() when the iterator is not\n    exhausted. Patch by Jacob Walls.\n  - bpo-44886: Inherit asyncio proactor datagram transport from\n    asyncio.DatagramTransport.\n  - bpo-46827: Support UDP sockets in asyncio.loop.sock_connect()\n    for selector-based event loops. Patch by Thomas Grainger.\n  - bpo-46811: Make test suite support Expat \u003e=2.4.5\n  - bpo-46252: Raise TypeError if ssl.SSLSocket is passed to\n    transport-based APIs.\n  - bpo-46784: Fix libexpat symbols collisions with user\n    dynamically loaded or statically linked libexpat in embedded\n    Python.\n  - bpo-39327: shutil.rmtree() can now work with VirtualBox\n    shared folders when running from the guest operating-system.\n  - bpo-46756: Fix a bug in\n    urllib.request.HTTPPasswordMgr.find_user_password() and\n    urllib.request.HTTPPasswordMgrWithPriorAuth.is_authenticated()\n    which allowed to bypass authorization. For example, access to\n    URI example.org/foobar was allowed if the user was authorized\n    for URI example.org/foo.\n  - bpo-45863: When the tarfile module creates a pax format\n    archive, it will put an integer representation of timestamps\n    in the ustar header (if possible) for the benefit of older\n    unarchivers, in addition to the existing full-precision\n    timestamps in the pax extended header.\n  - bpo-46672: Fix NameError in asyncio.gather() when initial\n    type check fails.\n  - bpo-45948: Fixed a discrepancy in the C implementation of the\n    xml.etree.ElementTree module. Now, instantiating an\n    xml.etree.ElementTree.XMLParser with a target=None keyword\n    provides a default xml.etree.ElementTree.TreeBuilder target\n    as the Python implementation does.\n  - bpo-46591: Make the IDLE doc URL on the About IDLE dialog\n    clickable.\n  - bpo-46400: expat: Update libexpat from 2.4.1 to 2.4.4\n  - bpo-46487: Add the get_write_buffer_limits method to\n    asyncio.transports.WriteTransport and to the SSL transport.\n  - bpo-46539: In typing.get_type_hints(), support evaluating\n    stringified ClassVar and Final annotations inside Annotated.\n    Patch by Gregory Beauregard.\n  - bpo-46491: Allow typing.Annotated to wrap typing.Final and\n    typing.ClassVar. Patch by Gregory Beauregard.\n  - bpo-46436: Fix command-line option -d/--directory in module\n    http.server which is ignored when combined with command-line\n    option --cgi. Patch by Gry Ogam.\n  - bpo-41403: Make mock.patch() raise a TypeError with\n    a relevant error message on invalid arg. Previously it\n    allowed a cryptic AttributeError to escape.\n  - bpo-46474: In importlib.metadata.EntryPoint.pattern, avoid\n    potential REDoS by limiting ambiguity in consecutive\n    whitespace.\n  - bpo-46469: asyncio generic classes now return\n    types.GenericAlias in __class_getitem__ instead of the same\n    class.\n  - bpo-46434: pdb now gracefully handles help when __doc__ is\n    missing, for example when run with pregenerated optimized\n    .pyc files.\n  - bpo-46333: The __eq__() and __hash__() methods of\n    typing.ForwardRef now honor the module parameter of\n    typing.ForwardRef. Forward references from different modules\n    are now differentiated.\n  - bpo-43118: Fix a bug in inspect.signature() that was causing\n    it to fail on some subclasses of classes with\n    a __text_signature__ referencing module globals. Patch by\n    Weipeng Hong.\n  - bpo-21987: Fix an issue with tarfile.TarFile.getmember()\n    getting a directory name with a trailing slash.\n  - bpo-20392: Fix inconsistency with uppercase file extensions\n    in MimeTypes.guess_type(). Patch by Kumar Aditya.\n  - bpo-46080: Fix exception in argparse help text generation if\n    a argparse.BooleanOptionalAction argument\u0027s default is\n    argparse.SUPPRESS and it has help specified. Patch by Felix\n    Fontein.\n  - bpo-44439: Fix .write() method of a member file in ZipFile,\n    when the input data is an object that supports the buffer\n    protocol, the file length may be wrong.\n  - bpo-45703: When a namespace package is imported before\n    another module from the same namespace is created/installed\n    in a different sys.path location while the program is\n    running, calling the importlib.invalidate_caches() function\n    will now also guarantee the new module is noticed.\n  - bpo-24959: Fix bug where unittest sometimes drops frames from\n    tracebacks of exceptions raised in tests.\n  - bpo-46463: Fixes escape4chm.py script used when building the\n    CHM documentation file\n  - bpo-46913: Fix test_faulthandler.test_sigfpe() if Python is\n    built with undefined behavior sanitizer (UBSAN): disable\n    UBSAN on the faulthandler_sigfpe() function. Patch by Victor\n    Stinner.\n  - bpo-46708: Prevent default asyncio event loop policy\n    modification warning after test_asyncio execution.\n  - bpo-46616: Ensures test_importlib.test_windows cleans up\n    registry keys after completion.\n  - bpo-44359: test_ftplib now silently ignores socket errors to\n    prevent logging unhandled threading exceptions. Patch by\n    Victor Stinner.\n  - bpo-46542: Fix a Python crash in test_lib2to3 when using\n    Python built in debug mode: limit the recursion limit. Patch\n    by Victor Stinner.\n  - bpo-46576: test_peg_generator now disables compiler\n    optimization when testing compilation of its own C extensions\n    to significantly speed up the testing on non-debug builds of\n    CPython.\n  - bpo-46542: Fix test_json tests checking for RecursionError:\n    modify these tests to use support.infinite_recursion(). Patch\n    by Victor Stinner.\n  - bpo-13886: Skip test_builtin PTY tests on non-ASCII\n    characters if the readline module is loaded. The readline\n    module changes input() behavior, but test_builtin is not\n    intented to test the readline module. Patch by Victor\n    Stinner.\n  - bpo-38472: Fix GCC detection in setup.py when\n    cross-compiling. The C compiler is now run with LC_ALL=C.\n    Previously, the detection failed with a German locale.\n  - bpo-46513: configure no longer uses AC_C_CHAR_UNSIGNED macro\n    and pyconfig.h no longer defines reserved symbol\n    __CHAR_UNSIGNED__.\n  - bpo-45925: Update Windows installer to use SQLite 3.37.2.\n  - bpo-45296: Clarify close, quit, and exit in IDLE. In the File\n    menu, \u0027Close\u0027 and \u0027Exit\u0027 are now \u0027Close Window\u0027 (the current\n    one) and \u0027Exit\u0027 is now \u0027Exit IDLE\u0027 (by closing all windows).\n    In Shell, \u0027quit()\u0027 and \u0027exit()\u0027 mean \u0027close Shell\u0027. If there\n    are no other windows, this also exits IDLE.\n  - bpo-45447: Apply IDLE syntax highlighting to pyi files. Patch\n    by Alex Waygood and Terry Jan Reedy.\n",
        "title": "Description of the patch"
      },
      {
        "category": "details",
        "text": "SUSE-2022-2174,SUSE-SLE-Module-Basesystem-15-SP3-2022-2174,SUSE-SLE-Module-Development-Tools-15-SP3-2022-2174,openSUSE-SLE-15.3-2022-2174,openSUSE-SLE-15.4-2022-2174",
        "title": "Patchnames"
      },
      {
        "category": "legal_disclaimer",
        "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).",
        "title": "Terms of use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://www.suse.com/support/security/contact/",
      "name": "SUSE Product Security Team",
      "namespace": "https://www.suse.com/"
    },
    "references": [
      {
        "category": "external",
        "summary": "SUSE ratings",
        "url": "https://www.suse.com/support/security/rating/"
      },
      {
        "category": "self",
        "summary": "URL of this CSAF notice",
        "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2022_2174-1.json"
      },
      {
        "category": "self",
        "summary": "URL for SUSE-SU-2022:2174-1",
        "url": "https://www.suse.com/support/update/announcement/2022/suse-su-20222174-1/"
      },
      {
        "category": "self",
        "summary": "E-Mail link for SUSE-SU-2022:2174-1",
        "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-June/011348.html"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1192249",
        "url": "https://bugzilla.suse.com/1192249"
      },
      {
        "category": "self",
        "summary": "SUSE Bug 1198511",
        "url": "https://bugzilla.suse.com/1198511"
      },
      {
        "category": "self",
        "summary": "SUSE CVE CVE-2015-20107 page",
        "url": "https://www.suse.com/security/cve/CVE-2015-20107/"
      }
    ],
    "title": "Security update for python39",
    "tracking": {
      "current_release_date": "2022-06-24T09:35:01Z",
      "generator": {
        "date": "2022-06-24T09:35:01Z",
        "engine": {
          "name": "cve-database.git:bin/generate-csaf.pl",
          "version": "1"
        }
      },
      "id": "SUSE-SU-2022:2174-1",
      "initial_release_date": "2022-06-24T09:35:01Z",
      "revision_history": [
        {
          "date": "2022-06-24T09:35:01Z",
          "number": "1",
          "summary": "Current version"
        }
      ],
      "status": "final",
      "version": "1"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-base-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-base-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-curses-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-curses-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-curses-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-dbm-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-dbm-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-dbm-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-devel-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-devel-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-devel-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-doc-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-doc-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-idle-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-idle-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-idle-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-testsuite-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-testsuite-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-testsuite-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tk-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-tk-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-tk-3.9.13-150300.4.13.1.aarch64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tools-3.9.13-150300.4.13.1.aarch64",
                "product": {
                  "name": "python39-tools-3.9.13-150300.4.13.1.aarch64",
                  "product_id": "python39-tools-3.9.13-150300.4.13.1.aarch64"
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                "product": {
                  "name": "libpython3_9-1_0-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                  "product_id": "libpython3_9-1_0-64bit-3.9.13-150300.4.13.1.aarch64_ilp32"
                }
              },
              {
                "category": "product_version",
                "name": "python39-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                "product": {
                  "name": "python39-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                  "product_id": "python39-64bit-3.9.13-150300.4.13.1.aarch64_ilp32"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                "product": {
                  "name": "python39-base-64bit-3.9.13-150300.4.13.1.aarch64_ilp32",
                  "product_id": "python39-base-64bit-3.9.13-150300.4.13.1.aarch64_ilp32"
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64_ilp32"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.i586",
                  "product_id": "libpython3_9-1_0-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-base-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-base-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-curses-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-curses-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-curses-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-dbm-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-dbm-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-dbm-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-devel-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-devel-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-devel-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-doc-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-doc-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-doc-devhelp-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-idle-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-idle-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-idle-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-testsuite-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-testsuite-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-testsuite-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tk-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-tk-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-tk-3.9.13-150300.4.13.1.i586"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tools-3.9.13-150300.4.13.1.i586",
                "product": {
                  "name": "python39-tools-3.9.13-150300.4.13.1.i586",
                  "product_id": "python39-tools-3.9.13-150300.4.13.1.i586"
                }
              }
            ],
            "category": "architecture",
            "name": "i586"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-base-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-base-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-curses-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-curses-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-curses-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-dbm-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-dbm-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-dbm-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-devel-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-devel-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-devel-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-doc-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-doc-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-idle-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-idle-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-idle-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tk-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-tk-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-tk-3.9.13-150300.4.13.1.ppc64le"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tools-3.9.13-150300.4.13.1.ppc64le",
                "product": {
                  "name": "python39-tools-3.9.13-150300.4.13.1.ppc64le",
                  "product_id": "python39-tools-3.9.13-150300.4.13.1.ppc64le"
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
                  "product_id": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-base-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-base-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-curses-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-curses-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-curses-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-dbm-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-dbm-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-dbm-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-devel-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-devel-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-devel-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-doc-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-doc-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-idle-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-idle-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-idle-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-testsuite-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-testsuite-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-testsuite-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tk-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-tk-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-tk-3.9.13-150300.4.13.1.s390x"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tools-3.9.13-150300.4.13.1.s390x",
                "product": {
                  "name": "python39-tools-3.9.13-150300.4.13.1.s390x",
                  "product_id": "python39-tools-3.9.13-150300.4.13.1.s390x"
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-32bit-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-32bit-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-32bit-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-base-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-base-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-curses-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-curses-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-curses-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-dbm-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-dbm-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-dbm-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-devel-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-devel-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-devel-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-doc-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-doc-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-idle-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-idle-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-idle-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-testsuite-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-testsuite-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-testsuite-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tk-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-tk-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-tk-3.9.13-150300.4.13.1.x86_64"
                }
              },
              {
                "category": "product_version",
                "name": "python39-tools-3.9.13-150300.4.13.1.x86_64",
                "product": {
                  "name": "python39-tools-3.9.13-150300.4.13.1.x86_64",
                  "product_id": "python39-tools-3.9.13-150300.4.13.1.x86_64"
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                "product": {
                  "name": "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                  "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sle-module-basesystem:15:sp3"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "SUSE Linux Enterprise Module for Development Tools 15 SP3",
                "product": {
                  "name": "SUSE Linux Enterprise Module for Development Tools 15 SP3",
                  "product_id": "SUSE Linux Enterprise Module for Development Tools 15 SP3",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:suse:sle-module-development-tools:15:sp3"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "openSUSE Leap 15.3",
                "product": {
                  "name": "openSUSE Leap 15.3",
                  "product_id": "openSUSE Leap 15.3",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:leap:15.3"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "openSUSE Leap 15.4",
                "product": {
                  "name": "openSUSE Leap 15.4",
                  "product_id": "openSUSE Leap 15.4",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:opensuse:leap:15.4"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "SUSE Linux Enterprise"
          }
        ],
        "category": "vendor",
        "name": "SUSE"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Basesystem 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Basesystem 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.aarch64 as component of SUSE Linux Enterprise Module for Development Tools 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Development Tools 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.ppc64le as component of SUSE Linux Enterprise Module for Development Tools 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Development Tools 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.s390x as component of SUSE Linux Enterprise Module for Development Tools 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Development Tools 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.x86_64 as component of SUSE Linux Enterprise Module for Development Tools 15 SP3",
          "product_id": "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "SUSE Linux Enterprise Module for Development Tools 15 SP3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-base-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.3",
          "product_id": "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.3"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-base-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-base-32bit-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-curses-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-curses-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-dbm-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-dbm-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-devel-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-devel-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-doc-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-idle-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-idle-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-testsuite-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-testsuite-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tk-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tk-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.aarch64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.aarch64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.aarch64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.ppc64le as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.ppc64le"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.ppc64le",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.s390x as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.s390x"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.s390x",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python39-tools-3.9.13-150300.4.13.1.x86_64 as component of openSUSE Leap 15.4",
          "product_id": "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.x86_64"
        },
        "product_reference": "python39-tools-3.9.13-150300.4.13.1.x86_64",
        "relates_to_product_reference": "openSUSE Leap 15.4"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2015-20107",
      "ids": [
        {
          "system_name": "SUSE CVE Page",
          "text": "https://www.suse.com/security/cve/CVE-2015-20107"
        }
      ],
      "notes": [
        {
          "category": "general",
          "text": "In Python (aka CPython) up to 3.10.8, the mailcap module does not add escape characters into commands discovered in the system mailcap file. This may allow attackers to inject shell commands into applications that call mailcap.findmatch with untrusted input (if they lack validation of user-provided filenames or arguments). The fix is also back-ported to 3.7, 3.8, 3.9",
          "title": "CVE description"
        }
      ],
      "product_status": {
        "recommended": [
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.x86_64",
          "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.aarch64",
          "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
          "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.s390x",
          "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.x86_64",
          "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.aarch64",
          "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.ppc64le",
          "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.s390x",
          "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.x86_64"
        ]
      },
      "references": [
        {
          "category": "external",
          "summary": "CVE-2015-20107",
          "url": "https://www.suse.com/security/cve/CVE-2015-20107"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1198511 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1198511"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1200507 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1200507"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1201777 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1201777"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1201791 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1201791"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1205068 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1205068"
        },
        {
          "category": "external",
          "summary": "SUSE Bug 1208337 for CVE-2015-20107",
          "url": "https://bugzilla.suse.com/1208337"
        }
      ],
      "remediations": [
        {
          "category": "vendor_fix",
          "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n",
          "product_ids": [
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "baseScore": 7.1,
            "baseSeverity": "HIGH",
            "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:L",
            "version": "3.1"
          },
          "products": [
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-base-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Basesystem 15 SP3:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.s390x",
            "SUSE Linux Enterprise Module for Development Tools 15 SP3:python39-tools-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-base-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-doc-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.3:python39-tools-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:libpython3_9-1_0-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:libpython3_9-1_0-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-base-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-base-32bit-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-curses-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-dbm-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-devel-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-doc-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-doc-devhelp-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-idle-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-testsuite-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-tk-3.9.13-150300.4.13.1.x86_64",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.aarch64",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.ppc64le",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.s390x",
            "openSUSE Leap 15.4:python39-tools-3.9.13-150300.4.13.1.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "date": "2022-06-24T09:35:01Z",
          "details": "important"
        }
      ],
      "title": "CVE-2015-20107"
    }
  ]
}


Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Sightings

Author Source Type Date

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
  • Confirmed: The vulnerability is confirmed from an analyst perspective.
  • Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
  • Patched: This vulnerability was successfully patched by the user reporting the sighting.
  • Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
  • Not confirmed: The user expresses doubt about the veracity of the vulnerability.
  • Not patched: This vulnerability was not successfully patched by the user reporting the sighting.


Loading…

Loading…