mirror of https://github.com/python/cpython
gh-120289: Add external timer in traverse of _lsprof.Profiler (#121998)
This commit is contained in:
parent
7b36b67b1e
commit
eaf094c09b
|
@ -856,6 +856,7 @@ static int
|
|||
profiler_traverse(ProfilerObject *op, visitproc visit, void *arg)
|
||||
{
|
||||
Py_VISIT(Py_TYPE(op));
|
||||
Py_VISIT(op->externalTimer);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue