We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Before:
>>> type A[T: (x:=3)] = int File "<stdin>", line 1 SyntaxError: 'named expression' can not be used within a TypeVar bound
After:
>>> type A[T: (x:=3)] = int File "<stdin>", line 1 SyntaxError: named expression cannot be used within a TypeVar bound
("cannot" is one word; the quotes don't really make sense here)
Before:
After:
("cannot" is one word; the quotes don't really make sense here)
Linked PRs