We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5664fd5 commit f7cf1bfCopy full SHA for f7cf1bf
Objects/object.c
@@ -3289,17 +3289,14 @@ int PyRefTracer_SetTracer(PyRefTracer tracer, void *data) {
3289
_Py_AssertHoldsTstate();
3290
3291
_PyEval_StopTheWorldAll(&_PyRuntime);
3292
-
3293
if (_PyRuntime.ref_tracer.tracer_func != NULL) {
3294
_PyReftracerTrack(NULL, PyRefTracer_TRACKER_REMOVED);
3295
if (PyErr_Occurred()) {
3296
return -1;
3297
}
3298
3299
3300
_PyRuntime.ref_tracer.tracer_func = tracer;
3301
_PyRuntime.ref_tracer.tracer_data = data;
3302
3303
_PyEval_StartTheWorldAll(&_PyRuntime);
3304
return 0;
3305
0 commit comments