method: test.rest.RestReporter.report

*Not documented*
    def report(self, what):

origin: AbstractReporter

where:

function source:

def report(self, what):
    repfun = getattr(self, "report_" + what.__class__.__name__, 
                     self.report_unknown)
    try:
        repfun(what)
    except (KeyboardInterrupt, SystemExit):
        raise
    except:
        print "Internal reporting problem"
        excinfo = py.code.ExceptionInfo()
        for i in excinfo.traceback:
            print str(i)[2:-1]
        print excinfo

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/rsession/testing/test_reporter.py

traceback test.rest.RestReporter.report.0