May 2018
Beginner to intermediate
282 pages
7h 58m
English
There are several drop-in replacements for pdb. They usually have a better interface. Some of the console-based debuggers are as follows:
pudb is my preferred replacement for pdb. It is so intuitive that even beginners can easily use this interface. Like pdb, just insert the following code to break the execution of the program:
import pudb; pudb.set_trace()
When the preceding line is executed, a full-screen debugger is launched, as ...
Read now
Unlock full access