module documentation

Undocumented

Function fill_typevars For a non-generic type, return instance type representing the type.
Function fill_typevars_with_any Apply a correct number of Any's as type arguments to a type.
Function has_no_typevars Undocumented
def fill_typevars(typ: TypeInfo) -> Instance|TupleType: (source)

For a non-generic type, return instance type representing the type. For a generic G type with parameters T1, .., Tn, return G[T1, ..., Tn].

def fill_typevars_with_any(typ: TypeInfo) -> Instance|TupleType: (source)

Apply a correct number of Any's as type arguments to a type.

def has_no_typevars(typ: Type) -> bool: (source)

Undocumented