Debugging
This section has yet to be expanded on. For now you can do this:
import ipdb; ipdb.set_trace()
in your Python file wherever you want to break like when you use gdb. This will open up a ipdb
interface that is exactly like gdb.
This section has yet to be expanded on. For now you can do this:
import ipdb; ipdb.set_trace()
in your Python file wherever you want to break like when you use gdb. This will open up a ipdb
interface that is exactly like gdb.