class documentation

The tuple type Tuple[T1, ..., Tn] (at least one type argument). Instance variables: items: Tuple item types partial_fallback: The (imprecise) underlying instance type that is used for non-tuple methods. This is generally builtins.tuple[Any, ...] for regular tuples, but it's different for named tuples and classes with a tuple base class. Use mypy.typeops.tuple_fallback to calculate the precise fallback type derived from item types. implicit: If True, derived from a tuple expression (t,....) instead of Tuple[t, ...]

Class Method deserialize Undocumented
Method __eq__ Undocumented
Method __hash__ Undocumented
Method __init__ Undocumented
Method accept Undocumented
Method can_be_any_bool Undocumented
Method can_be_false_default Undocumented
Method can_be_true_default Undocumented
Method copy_modified Undocumented
Method length Undocumented
Method serialize Undocumented
Method slice Undocumented
Class Variable __slots__ Undocumented
Instance Variable implicit Undocumented
Instance Variable items Undocumented
Instance Variable partial_fallback Undocumented

Inherited from Type (via ProperType):

Method __repr__ Undocumented
Method can_be_false.setter Undocumented
Method can_be_true.setter Undocumented
Method is_singleton_type Undocumented
Property can_be_false Undocumented
Property can_be_true Undocumented
Instance Variable _can_be_false Undocumented
Instance Variable _can_be_true Undocumented

Inherited from Context (via ProperType, Type):

Method set_line If target is a node, pull line (and column) information into this node. If column is specified, this will override any column information coming from a node.
Instance Variable column Undocumented
Instance Variable end_column Undocumented
Instance Variable end_line Undocumented
Instance Variable line Undocumented
@classmethod
def deserialize(cls, data: JsonDict) -> TupleType: (source)

Undocumented

def __eq__(self, other: object) -> bool: (source)

Undocumented

def __hash__(self) -> int: (source)

Undocumented

def __init__(self, items: list[Type], fallback: Instance, line: int = -1, column: int = -1, implicit: bool = False): (source)

Undocumented

def accept(self, visitor: TypeVisitor[T]) -> T: (source)

Undocumented

def can_be_any_bool(self) -> bool: (source)

Undocumented

def can_be_false_default(self) -> bool: (source)

Undocumented

def can_be_true_default(self) -> bool: (source)

Undocumented

def copy_modified(self, *, fallback: Instance|None = None, items: list[Type]|None = None) -> TupleType: (source)

Undocumented

def length(self) -> int: (source)

Undocumented

def serialize(self) -> JsonDict: (source)

Undocumented

def slice(self, begin: int|None, end: int|None, stride: int|None) -> TupleType: (source)

Undocumented

__slots__: tuple[str, ...] = (source)

Undocumented

implicit = (source)

Undocumented

Undocumented

partial_fallback = (source)

Undocumented