https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/181697
None >From ad01d270793ab42f50b8a13f2bf20676322d67b5 Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Mon, 16 Feb 2026 17:26:58 +0100 Subject: [PATCH] [lldb] fix a typo in decorator's docstring --- lldb/packages/Python/lldbsuite/test/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index b4658b149af90..0d3ae5b3cdd25 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -446,7 +446,7 @@ def unicode_test(func): """Decorate the item as a test which requires Unicode to be enabled. lldb checks the value of the `LANG` environment variable for the substring "utf-8" - to determine if the terminal supports Unicode (except on Windows, were we assume + to determine if the terminal supports Unicode (except on Windows, where we assume it's always supported). This decorator sets LANG to `utf-8` before running the test and resets it to its previous value afterwards. _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
