Skip to content

Commit 57cd55a

Browse files
authored
Merge branch 'main' into main
2 parents 1424067 + 75cdf70 commit 57cd55a

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

stdlib/@tests/stubtest_allowlists/py315.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ annotationlib.ForwardRef.__extra_names__
4747
annotationlib.ForwardRef.__globals__
4848
annotationlib.ForwardRef.__init_subclass__
4949
annotationlib.ForwardRef.__owner__
50-
annotationlib.ForwardRef.__resolved_str__
51-
annotationlib.ForwardRef.__resolved_str_cache__
52-
annotationlib.ForwardRef.__slots__
5350
annotationlib.ForwardRef.__stringifier_dict__
5451
ast.type_param.__init__
5552
# base64.b64decode uses a private sentinel list as the default for parameters whose public types are bool/buffer.

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)