method: test.TerminalSession.repr_progress_long_result

*Not documented*
    def repr_progress_long_result(self, item, outcome):

origin: test.TerminalSession

where:

function source:

def repr_progress_long_result(self, item, outcome):
    for outcometype, char in self.namemap.items():
        if isinstance(outcome, outcometype):
            return char
    else:
        #raise TypeError, "not an Outcome instance: %r" % (outcome,)
        return 'UNKNOWN'

call sites:

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

traceback test.TerminalSession.repr_progress_long_result.0

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

traceback test.TerminalSession.repr_progress_long_result.1

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

traceback test.TerminalSession.repr_progress_long_result.2

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

traceback test.TerminalSession.repr_progress_long_result.3