class documentation

Class that is going to provide the interface between the block and context when used with the 'with' keyword.

Method __enter__ Enter method.
Method __exit__ Exit method.
Method __init__ Initialization method, should always contain a boolean array as a mask
Instance Variable context Undocumented
Instance Variable mask Undocumented
def __enter__(self): (source)

Enter method.

def __exit__(self, exc_type, exc_val, exc_tb): (source)

Exit method.

def __init__(self, object): (source)

Initialization method, should always contain a boolean array as a mask Parameters: ----------- object: Array([Bool])

context = (source)

Undocumented

mask = (source)

Undocumented