[3.13] gh-120289: Add external timer in traverse of _lsprof.Profiler (GH-121998) (#122000)

gh-120289: Add external timer in traverse of _lsprof.Profiler (GH-121998)
(cherry picked from commit eaf094c09b)

Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
This commit is contained in:
Miss Islington (bot) 2024-07-19 06:10:11 +02:00 committed by GitHub
parent 721a7dde11
commit e992cc3922
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -856,6 +856,7 @@ static int
profiler_traverse(ProfilerObject *op, visitproc visit, void *arg) profiler_traverse(ProfilerObject *op, visitproc visit, void *arg)
{ {
Py_VISIT(Py_TYPE(op)); Py_VISIT(Py_TYPE(op));
Py_VISIT(op->externalTimer);
return 0; return 0;
} }