Store binding context

This commit is contained in:
David Peter
2025-11-26 12:02:48 +01:00
parent 8ed96b04e4
commit 54c88b599d
9 changed files with 185 additions and 92 deletions

View File

@@ -442,8 +442,6 @@ def _(
Generic implicit type aliases can be partially specialized:
```py
U = TypeVar("U")
DictStrTo = MyDict[str, U]
reveal_type(DictStrTo) # revealed: <class 'dict[str, U@DictStrTo]'>