Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
The simplest repro:
>>> typeA[X,**Y]=None>>>A[int, [str]]A[int, [<class'str'>]]
I think that it should be:
>>> typeA[X,**Y]=None>>>A[int, [str]]A[int, [str]]
We already had similar issues in the past:#102637
This happens somewhere inga_repr, I will have a look.