in copybook.py [0:0]
def fRemStack(iStack,iLevel): NewStack = {} for k in iStack: if k < iLevel: NewStack[k] = iStack[k] return NewStack