Skip to content

Commit 11ae0c8

Browse files
Merge pull request swiftlang#11332 from charles-zablit/charles-zablit/lldb/fix-3.9-feature-to-21.x
🍒 [lldb] fix Python 3.9+ specific typing annotations (llvm#156868)
2 parents 8cc6285 + 8535d4d commit 11ae0c8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# System modules
2+
3+
# allow the use of the `list[str]` type hint in Python 3.8
4+
from __future__ import annotations
5+
26
from functools import wraps
37
from packaging import version
48
import ctypes

0 commit comments

Comments
 (0)