debug

debug 0.2.0

debug is a fancy debugger in a single statement.People debug with print. It's great in simple cases. Another debugging tool, pdb, is less popular as it requires more effort: one has to do a Google search, skim through documentation, type some long...

Alleyoop

Alleyoop 0.9.8

Alleyoop is a GNOME front-end to the popular Valgrind memory debugger.Alleyoop is a graphical front-end to the increasingly popular Valgrind memory checker for x86 GNU/ Linux using the Gtk+ widget set and other GNOME libraries for the X-Windows...

pyrasite

pyrasite 2.0

pyrasite is a Python tool that injects code into a running Python process.Example PayloadsHello Worldpyrasite < PID > payloads/helloworld.pyThis payload is used by the test suite, which can be run by doing:python setup.py testReverse Python Shell$...

rpdb

rpdb 0.1.2

rpdb is essentially a Python wrapper around pdb that will re-route stdin and stdout to a socket handler. By default it opens the debugger on port 4444:import rpdb; rpdb.set_trace()But you can change that by simply instantiating Rpdb manually:import...

interruptingcow is a generic Python utility that can relatively gracefully interrupt your code when it doesn't execute within a specific number of seconds:from interruptingcow import timeouttry: with timeout(5): # perform a potentially very slow...

KDbg

KDbg 2.5.5 updated

KDbg is an open source and free graphical software implemented in C++ and designed from the offset to act as a GUI (Graphical User Interface) front-end for GDB application, also known as the GNU debugger. It is tailored specifically for the KDE Plasma...

UpStare

UpStare 0.12.9

The program code and the program state are updated immediately in a single step.It is not necessary to wait indefinitely for a quiescent program state. A running algorithm can be updated midstream its execution and resumed from a different point (not...

pytrace

pytrace 0.2.1

pytrace is a fast Python tracer that records function calls, arguments and return values.traces aid debugging, profiling and obviate logging.pytrace has been tested on python 2.7 and python 3.2. (should support 2.6 and up)pytrace has been tested on os x...

rpcpdb

rpcpdb 0.3.5

rpcpdb is a Python wrapper around the Python pdb debugger which makes it more suitable for use in RPC contexts.It is designed to fulfil the need to debug a function on an already-running server which uses threads or processes to dispatch each remote...