-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix reified generics getting the wrong order by making it a dict
- Loading branch information
1 parent
a4b3340
commit 8726e31
Showing
2 changed files
with
47 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from __future__ import annotations | ||
|
||
from typing import Tuple, TypeVar | ||
|
||
from basedtyping import ReifiedGeneric, T | ||
|
||
U = TypeVar("U") | ||
V = TypeVar("V") | ||
|
||
|
||
class Foo(ReifiedGeneric[Tuple[T, U, V]]): | ||
def __init__(self) -> None: | ||
print(self.__reified_generics__) | ||
|
||
|
||
class Bar(Foo[int, U, None]): | ||
pass | ||
|
||
|
||
Bar[str]() |