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 951f70c commit 256eb57Copy full SHA for 256eb57
Python/legacy_tracing.c
@@ -102,10 +102,10 @@ sys_profile_unwind(
102
103
static PyObject *
104
sys_profile_call_or_return(
105
- PyObject *callable, PyObject *const *args,
+ PyObject *op, PyObject *const *args,
106
size_t nargsf, PyObject *kwnames
107
) {
108
- _PyLegacyEventHandler *self = _PyLegacyEventHandler_CAST(callable);
+ _PyLegacyEventHandler *self = _PyLegacyEventHandler_CAST(op);
109
assert(kwnames == NULL);
110
assert(PyVectorcall_NARGS(nargsf) == 4);
111
PyObject *callable = args[2];
0 commit comments