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 comment
Sort by
Date
Votes
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
Please sign in to leave a comment.