Skip to content

Commit 56c8cbb

Browse files
Add GenericAlias.__typing_unpacked_tuple_args__ (#8015)
Fixes #8014 python/cpython#92484
1 parent acc0167 commit 56c8cbb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/types.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,8 @@ if sys.version_info >= (3, 9):
731731
if sys.version_info >= (3, 11):
732732
@property
733733
def __unpacked__(self) -> bool: ...
734+
@property
735+
def __typing_unpacked_tuple_args__(self) -> tuple[Any, ...] | None: ...
734736

735737
def __getattr__(self, name: str) -> Any: ... # incomplete
736738

0 commit comments

Comments
 (0)