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
Before:
>>> type A[T: (x:=3)] = int File "<stdin>", line 1SyntaxError: 'named expression' can not be used within a TypeVar boundAfter:
>>> type A[T: (x:=3)] = int File "<stdin>", line 1SyntaxError: named expression cannot be used within a TypeVar bound("cannot" is one word; the quotes don't really make sense here)