method: test.TerminalSession.getlastvisible

*Not documented*
    def getlastvisible(self, sourcetraceback): 

origin: test.TerminalSession

where:

exceptions that might appear during execution:

function source:

def getlastvisible(self, sourcetraceback): 
    traceback = sourcetraceback[:]
    while traceback: 
        entry = traceback.pop()
        try: 
            x = entry.frame.eval("__tracebackhide__") 
        except: 
            x = False 
        if not x: 
            return entry 
    else: 
        return sourcetraceback[-1]

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/terminal/terminal.py

traceback test.TerminalSession.getlastvisible.0

called in /home/johnny/projects/merlinux/py/dist/py/test/terminal/terminal.py

traceback test.TerminalSession.getlastvisible.1