debugging - Is there a Python 3.x debugger for embedded interpreter? -
i've embedded python in c++ application. there graphical debugger can attach debug scrips run in embedded console python 3.4?
previously (when using python 2.7) i've used winpdb , attached debugger with
import rpdb2; rpdb2.start_embedded_debugger(password)
but winpdb doesn't work wxpython phoenix needed python 3.x.
i must load debugger inside embedded interpreter since lot of modules available there, scripts can't run outside environment.
what alternatives there winpdb embedded debugging gui? or there updated version of winpdb works wxpython phoenix?
thanks!
you can use ptvs (python tools visual studio) or pydev on eclipse remote debugging.
Comments
Post a Comment