module documentation
(source)

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): (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].

Parameters
typ:TypeInfoUndocumented
Returns
Union[Instance, TupleType]Undocumented
def fill_typevars_with_any(typ): (source)
Apply a correct number of Any's as type arguments to a type.
Parameters
typ:TypeInfoUndocumented
Returns
Union[Instance, TupleType]Undocumented
def has_no_typevars(typ): (source)

Undocumented

Parameters
typ:TypeUndocumented
Returns
boolUndocumented