Winpdb is a remote Python debugger originally created by Nir Aides in 2005. It has been maintained by Philippe Fremy since March 30, 2018 as a fork called Winpdb-reborn licensed under GNU GPLv2+. The project is currently stopped.
Winpdb is a remote Python debugger originally created by Nir Aides in 2005. It has been maintained by Philippe Fremy since March 30, 2018 as a fork called Winpdb-reborn licensed under GNU GPLv2+. The project is currently stopped.
A debugger is a computer program used to test and debug other programs (the "target" programs). Common features of debuggers include the ability to run or halt the target program using breakpoints, step through code line by line, and display or modify the contents of memory, CPU registers, and stack frames.
The code to be examined might alternatively be running on an instruction set simulator (ISS), a technique that allows great power in its ability to halt when specific conditions are encountered, but which will typically be somewhat slower than executing the code directly on the appropriate (or the same) processor. Some debuggers offer two modes of operation, full or partial simulation, to limit this impact.
View the full Wikipedia page for Debugging toolA debugger is software for executing a computer program in an environment that allows for programming-level inspection and control. A debugger is often used to debug, but can be used for other goals including testing. Common features of a debugger include stepping through code line-by-line, breaking into the program's flow of control, managing breakpoints, and reporting and modifying memory.
A source-level debugger (a.k.a. symbolic debugger) provides a user experience that integrates the program's source code. Typically, such a debugger can indicate which line of source code corresponds to the execution point of the program and allows for reading and writing memory via the symbols of the source code. In contrast, a low-level debugger (a.k.a. machine-language debugger) shows the execution point as machine code or its associated assembly language and allows memory access by address only.
View the full Wikipedia page for Debugger