What is the best way to debug a cython script
We are using cython to speed up for python code. What is the best way to use the debugger in to debug cython code. I am unable to find any documentation related to this.
1 条评论
排序方式
日期
投票数
Cython generates native code, and debugging native code is not currently supported in PyCharm. You can use a command-line debugger for debugging Cython scripts, as described in http://docs.cython.org/src/userguide/debugging.html
请先登录再写评论。