Skip to content

Commit d907bc2

Browse files
committed
Fix CI and annotationlib
1 parent a58999c commit d907bc2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

stdlib/annotationlib.pyi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ if sys.version_info >= (3, 14):
4141
"__cell__",
4242
"__owner__",
4343
"__stringifier_dict__",
44+
"__resolved_str_cache__",
4445
)
4546
__forward_is_argument__: bool
4647
__forward_is_class__: bool
4748
__forward_module__: str | None
49+
__resolved_str_cache__: str | None
4850
def __init__(
4951
self, arg: str, *, module: str | None = None, owner: object = None, is_argument: bool = True, is_class: bool = False
5052
) -> None: ...
@@ -91,6 +93,8 @@ if sys.version_info >= (3, 14):
9193
def __forward_arg__(self) -> str: ...
9294
@property
9395
def __forward_code__(self) -> types.CodeType: ...
96+
@property
97+
def __resolved_str__(self) -> str: ...
9498
def __eq__(self, other: object) -> bool: ...
9599
def __hash__(self) -> int: ...
96100
def __or__(self, other: Any) -> types.UnionType: ...

0 commit comments

Comments
 (0)