class documentation

class LoopStack: (source)

View In Hierarchy

a stack for LoopContexts that implements the context manager protocol to automatically pop off the top of the stack on context exit

Method __getattr__ Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Instance Variable stack Undocumented
Method _enter Undocumented
Method _exit Undocumented
Method _pop Undocumented
Method _push Undocumented
Property _top Undocumented
def __getattr__(self, key): (source)

Undocumented

def __init__(self): (source)

Undocumented

def __iter__(self): (source)

Undocumented

Undocumented

def _enter(self, iterable): (source)

Undocumented

def _exit(self): (source)

Undocumented

def _pop(self): (source)

Undocumented

def _push(self, iterable): (source)

Undocumented

Undocumented