class documentation

class _ReturnsAndExceptions: (source)

View In Hierarchy

Mutable class for collecting return types and exceptions of functions. The collecting is stable: Items are kept in the order in which they were encountered. Attributes: return_types: Return types seen so far. exceptions: Exceptions seen so far.

Method __init__ Undocumented
Method Update Add the return types / exceptions of a signature to this instance.
Instance Variable exceptions Undocumented
Instance Variable return_types Undocumented
def __init__(self): (source)

Undocumented

def Update(self, signature): (source)

Add the return types / exceptions of a signature to this instance.

exceptions: list = (source)

Undocumented

return_types: list = (source)

Undocumented