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 a7211e8 commit b1c42b4Copy full SHA for b1c42b4
filprofiler/_profiler.c
@@ -8,7 +8,7 @@ extern void fil_finish_call(void);
8
int fil_tracer(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) {
9
if (what == PyTrace_CALL) {
10
fil_start_call(PyUnicode_AsUTF8(frame->f_code->co_filename),
11
- PyUnicode_AsUTF8(frame->f_code->co_name));
+ PyUnicode_AsUTF8(frame->f_code->co_name));
12
return 0;
13
}
14
if (what == PyTrace_RETURN) {
0 commit comments