debugging - Debug into libraries in python -
debugging - Debug into libraries in python -
i'm trying come in library function in pycharm, see happening there, can't: debugger shows me details , variables, moving within step step, don't see on window lines of code. can sense debugger moving on them because shows different internal variables. guess happens because library installed binary package, without sources.
how should install library able moving using debugger?
i tried both installation types:
i installed pip, , using installed suds. i downloaded suds sources (and build&installed them, using setup.py).and both don't show me internal codelines. how can move using debugger on library code?
i got it!
after building suds using setup.py, there appears directory suds sources in: **building_dir\build\lib**
it needs re-create **c:\pythonxx\lib\site-packages**
and remove there suds-z.z-pyx.x.egg
then debugging starts import sources directory , show code lines in debug. bingo!
python debugging python-2.7 pycharm
Comments
Post a Comment