DEBSOURCES
Skip Quicknav
sources / python-picologging / 0.9.4-3 / tests / unit / utils.py
123456
def filter_gc(stack): for frame in stack.frames[:4]: if "picologging" in frame.filename and "test_" not in frame.filename: return True return False