Documentation
reveal_type("shaking") # Literal["shaking"]?
reveal_type(int("1")) # builtins.int*
from typing import TypeVar
T = TypeVar("T")
def foo(t: T) -> T:
reveal_type(t) # T`-1
What do all these wacky symbols mean *, ? and
I'm guessing there might be others as well.
I looked through the docs and couldn't find anything about it.
Also <: and :>, maybe also def(int) -> str and def().