Ejemplo n.º 1
0
def _load_binary_backtrace(datafile):
    trace = Backtrace()
    trace.load(_binary_backtrace_path(datafile))
    return trace
Ejemplo n.º 2
0
def _generate_binary_backtrace(datafile):
    binpath = _binary_backtrace_path(datafile)
    if not os.path.exists(binpath):
        trace = Backtrace(datafile)
        trace.save(binpath)