https://github.com/charles-zablit updated https://github.com/llvm/llvm-project/pull/156868
>From 0e9fdefffde7c679873b0907147bb153763f4ea1 Mon Sep 17 00:00:00 2001 From: Charles Zablit <c_zab...@apple.com> Date: Thu, 4 Sep 2025 14:18:02 +0100 Subject: [PATCH] [lldb] remove Python 3.9 specific typing annotations --- lldb/packages/Python/lldbsuite/test/decorators.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index a391319ca9b0e..c4deea16942db 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -10,6 +10,7 @@ import tempfile import subprocess import json +from typing import List # Third-party modules import unittest @@ -1148,7 +1149,7 @@ def is_feature_enabled(): return skipTestIfFn(is_feature_enabled) -def skipIfBuildType(types: list[str]): +def skipIfBuildType(types: List[str]): """Skip tests if built in a specific CMAKE_BUILD_TYPE. Supported types include 'Release', 'RelWithDebInfo', 'Debug', 'MinSizeRel'. _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits