Jupyter Snippet CB2nd 08_debugging
Jupyter Snippet CB2nd 08_debugging
Debugging your code with IPython
import pdb
pdb.set_trace()
%run -d -b extscript.py:20 script
from IPython import embed
embed()
Jupyter Snippet CB2nd 08_debugging
import pdb
pdb.set_trace()
%run -d -b extscript.py:20 script
from IPython import embed
embed()