I can set a breakpoint with import pdb pdb.set_trace()
However, when I want to set a breakpoint in library code, I'd like to set a breakpoint without modifying the code (perhaps C-x space).
C-x space says something(as if it set a breakpoint), but it doesn't trigger.
How should I breakpoint in python library code?
(For me at the moment, django code base)
