Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
Open
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-typingtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Repro:
>>> type A[X] =list[X] >>>dir(A[int]) [..., '__copy__', '__deepcopy__', ...]We can access all other attributes, but not __copy__ and __deepcopy__:
>>> A[int].__copy__ Traceback (most recent call last): File "<stdin>", line 1, in <module>AttributeError: 'types.GenericAlias' object has no attribute '__copy__'. Did you mean: '__doc__'? >>> A[int].__deepcopy__ Traceback (most recent call last): File "<stdin>", line 1, in <module>AttributeError: 'types.GenericAlias' object has no attribute '__deepcopy__'I am not quite sure what is the right thing to do here 🤔
Linked PRs
Metadata
Metadata
Assignees
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-typingtype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error