https://github.com/da-viper created https://github.com/llvm/llvm-project/pull/173392
follow up from 9892870687e0af00e798474aa5cecfd4647071e1 as we recently added type hints to this file >From a49e417ef377923fe44f4a26b430e4f9b2433256 Mon Sep 17 00:00:00 2001 From: Ebuka Ezike <[email protected]> Date: Tue, 23 Dec 2025 16:29:27 +0000 Subject: [PATCH] [lldb] Add Python 3.8 compatibility for lldbtest.py follow up from 9892870687e0af00e798474aa5cecfd4647071e1 as we recently added type hints to this file --- lldb/packages/Python/lldbsuite/test/lldbtest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 67b94989f584e..6409e1f742fd6 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -27,6 +27,9 @@ $ """ +# FIXME: remove when LLDB_MINIMUM_PYTHON_VERSION > 3.8 +from __future__ import annotations + # System modules import abc from functools import wraps _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
