GH-96079 Fix missing field name for _AnnotatedAlias (#96080)

This commit is contained in:
Anh71me 2022-09-01 07:02:24 +08:00 committed by GitHub
parent 615537e62f
commit 0cd33e11fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View file

@ -7143,6 +7143,7 @@ class SpecialAttrsTests(BaseTestCase):
typing.Self: 'Self',
# Subscribed special forms
typing.Annotated[Any, "Annotation"]: 'Annotated',
typing.Annotated[int, 'Annotation']: 'Annotated',
typing.ClassVar[Any]: 'ClassVar',
typing.Concatenate[Any, SpecialAttrsP]: 'Concatenate',
typing.Final[Any]: 'Final',