-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Closed
Labels
Description
The simplest repro:
>>> type A[X, **Y] = None
>>> A[int, [str]]
A[int, [<class 'str'>]]
I think that it should be:
>>> type A[X, **Y] = None
>>> A[int, [str]]
A[int, [str]]
We already had similar issues in the past: #102637
This happens somewhere in ga_repr
, I will have a look.