10000 Merge remote-tracking branch 'upstream/main' into fix/ubsan/iterobjec… · python/cpython@e5ab45a · GitHub
[go: up one dir, main page]

Skip to content

Commit e5ab45a

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix/ubsan/iterobject-111178
# Conflicts: # Objects/iterobject.c
1 parent 2a3fea5 commit e5ab45a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Python/legacy_tracing.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,8 @@ setup_profile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg, PyObject
447447
tstate->interp->sys_profile_initialized = true;
448448
if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID,
449449
sys_profile_start, PyTrace_CALL,
450-
PY_MONITORING_EVENT_PY_START, PY_MONITORING_EVENT_PY_RESUME)) {
450+
PY_MONITORING_EVENT_PY_START,
451+
PY_MONITORING_EVENT_PY_RESUME)) {
451452
return -1;
452453
}
453454
if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID,
@@ -457,7 +458,8 @@ setup_profile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg, PyObject
457458
}
458459
if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID,
459460
sys_profile_return, PyTrace_RETURN,
460-
PY_MONITORING_EVENT_PY_RETURN, PY_MONITORING_EVENT_PY_YIELD)) {
461+
PY_MONITORING_EVENT_PY_RETURN,
462+
PY_MONITORING_EVENT_PY_YIELD)) {
461463
return -1;
462464
}
463465
if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID,

0 commit comments

Comments
 (0)
0