Author: Ebuka Ezike Date: 2025-12-24T00:59:11Z New Revision: f88e589bd9c5bf2789474949dd1958a8e89cca0c
URL: https://github.com/llvm/llvm-project/commit/f88e589bd9c5bf2789474949dd1958a8e89cca0c DIFF: https://github.com/llvm/llvm-project/commit/f88e589bd9c5bf2789474949dd1958a8e89cca0c.diff LOG: [lldb] Add Python 3.8 compatibility for lldbtest.py (#173392) follow up from 9892870687e0af00e798474aa5cecfd4647071e1 as we recently added type hints to this file Added: Modified: lldb/packages/Python/lldbsuite/test/lldbtest.py Removed: ################################################################################ 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
