mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
GH-103082: Code cleanup in instrumentation code (#103474)
This commit is contained in:
parent
e1f14643dc
commit
738c226786
4 changed files with 42 additions and 39 deletions
|
@ -686,11 +686,11 @@ init_interpreter(PyInterpreterState *interp,
|
|||
_PyGC_InitState(&interp->gc);
|
||||
PyConfig_InitPythonConfig(&interp->config);
|
||||
_PyType_InitCache(interp);
|
||||
for(int i = 0; i < PY_MONITORING_UNGROUPED_EVENTS; i++) {
|
||||
for (int i = 0; i < PY_MONITORING_UNGROUPED_EVENTS; i++) {
|
||||
interp->monitors.tools[i] = 0;
|
||||
}
|
||||
for (int t = 0; t < PY_MONITORING_TOOL_IDS; t++) {
|
||||
for(int e = 0; e < PY_MONITORING_EVENTS; e++) {
|
||||
for (int e = 0; e < PY_MONITORING_EVENTS; e++) {
|
||||
interp->monitoring_callables[t][e] = NULL;
|
||||
|
||||
}
|
||||
|
@ -834,11 +834,11 @@ interpreter_clear(PyInterpreterState *interp, PyThreadState *tstate)
|
|||
|
||||
Py_CLEAR(interp->audit_hooks);
|
||||
|
||||
for(int i = 0; i < PY_MONITORING_UNGROUPED_EVENTS; i++) {
|
||||
for (int i = 0; i < PY_MONITORING_UNGROUPED_EVENTS; i++) {
|
||||
interp->monitors.tools[i] = 0;
|
||||
}
|
||||
for (int t = 0; t < PY_MONITORING_TOOL_IDS; t++) {
|
||||
for(int e = 0; e < PY_MONITORING_EVENTS; e++) {
|
||||
for (int e = 0; e < PY_MONITORING_EVENTS; e++) {
|
||||
Py_CLEAR(interp->monitoring_callables[t][e]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue