class documentation

class UninferableBase: (source)

View In Hierarchy

Special inference object, which is returned when inference fails. This is meant to be used as a singleton. Use astroid.util.Uninferable to access it.

Method __bool__ Undocumented
Method __call__ Undocumented
Method __getattribute__ Undocumented
Method __repr__ Undocumented
Method accept Undocumented
def __bool__(self) -> Literal[False]: (source)

Undocumented

def __call__(self, *args: Any, **kwargs: Any) -> UninferableBase: (source)

Undocumented

def __getattribute__(self, name: str) -> Any: (source)

Undocumented

def __repr__(self) -> Literal['Uninferable']: (source)

Undocumented

def accept(self, visitor): (source)

Undocumented