Skip to content

Commit f88e589

Browse files
authored
[lldb] Add Python 3.8 compatibility for lldbtest.py (#173392)
follow up from 9892870 as we recently added type hints to this file
1 parent 9b020dd commit f88e589

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lldb/packages/Python/lldbsuite/test/lldbtest.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
$
2828
"""
2929

30+
# FIXME: remove when LLDB_MINIMUM_PYTHON_VERSION > 3.8
31+
from __future__ import annotations
32+
3033
# System modules
3134
import abc
3235
from functools import wraps

0 commit comments

Comments
 (0)