class documentation

class ArgKind(Enum): (source)

View In Hierarchy

Undocumented

Method is_named Undocumented
Method is_optional Undocumented
Method is_positional Undocumented
Method is_required Undocumented
Method is_star Undocumented
Constant ARG_NAMED Undocumented
Constant ARG_NAMED_OPT Undocumented
Constant ARG_OPT Undocumented
Constant ARG_POS Undocumented
Constant ARG_STAR Undocumented
Constant ARG_STAR2 Undocumented
def is_named(self, star: bool = False) -> bool: (source)

Undocumented

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

Undocumented

def is_positional(self, star: bool = False) -> bool: (source)

Undocumented

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

Undocumented

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

Undocumented

ARG_NAMED: int = (source)

Undocumented

Value
3
ARG_NAMED_OPT: int = (source)

Undocumented

Value
5

Undocumented

Value
1

Undocumented

Value
0
ARG_STAR: int = (source)

Undocumented

Value
2
ARG_STAR2: int = (source)

Undocumented

Value
4