Commit 555ccf2 1 parent f9ab6e1 commit 555ccf2 Copy full SHA for 555ccf2
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,10 +153,10 @@ Now we basically know the cause of the trouble. You can look up `cfunction_call`
153
153
in the CPython source code with the help of ripgrep and locate the line that
154
154
generates this call, and look up ` one ` in the appropriate source and find the
155
155
signature. Another approach to locate the call site would be to recompile with
156
- ` -g3 ` and use source maps {ref}` source-maps ` to locate the problematic source
157
- code. With the same process of reproduce crash ==> click innermost stack frame
158
- ==> see source file and line where the error occurs. In this case we see that
159
- the crash is on the line:
156
+ ` -g3 ` and use source maps {ref}` build-with-symbols ` to locate the problematic
157
+ source code. With the same process of reproduce crash ==> click innermost stack
158
+ frame ==> see source file and line where the error occurs. In this case we see
159
+ that the crash is on the line:
160
160
161
161
``` C
162
162
result = _PyCFunction_TrampolineCall(meth, self, args);
You can’t perform that action at this time.
0 commit comments