pytracing icon indicating copy to clipboard operation
pytracing copied to clipboard

a python trace profiler that outputs to chrome trace-viewer format (about://tracing).

Results 3 pytracing issues
Sort by recently updated
recently updated
newest added

Add minor debug logging statements.

Testing the threading behavior, it seems to work: ```python from time import sleep from multiprocessing import Process from threading import Thread from pytracing import TraceProfiler tp = TraceProfiler(output=open('trace.out', 'w')) def...