What about running nose with a smarter interactive debugger?Use this and never risk yourself forgetting import pdb; pdb.set_trace() in your code again!ipdbplugin is a nose plugin that's 99.99% based on nose's builtin debug plugin.If you have any ideas...

PyChecker

PyChecker 0.8.19

PyChecker is a tool for finding bugs in python source code. PyChecker program finds problems that are typically caught by a compiler for less dynamic languages, like C and C . It is similar to lint. Because of the dynamic nature of python, some warnings...

python-ptrace is a debugger using ptrace (Linux, BSD and Darwin system call to trace processes) written in Python.python-ptrace is an open source project written in Python and distributed under GNU GPLv2 license.Features:High level Python object API :...

VimPdb

VimPdb 0.4.5

VimPdb is a module that provides an integration of the Python debugger pdb into the VIM editor. Usage:Python codeUsing vimpdb is easy -- just insert a call to set_trace in your code almost as usual:import vimpdb; vimpdb.set_trace()Then start your python...

PyXMPP

PyXMPP 1.1.2

PyXMPP is a Jabber/XMPP implementation for Python.PyXMPP provides most core features of the XMPP protocol and several JSF-defined extensions. PyXMPP provides building blocks for creating Jabber clients and components. Developer uses them to setup XMPP...

Pyshield

Pyshield 1.6.2

Pyshield is an integrated development platform that supports Python script editing, debugging and publish the files written by Python in various forms.The goal of Pyshield is to let you write and debug Python scripts conveniently and easily, then publish...

Meliae

Meliae 0.4.0

Meliae is an application similar to heapy (in the 'guppy' project), in its attempt to understand how memory has been allocated.Currently, its main difference is that it splits the task of computing summary statistics, etc of memory consumption from the...

PureTest

PureTest 4.3

PureTest software is used to setup scenarios of tasks, execute and debug them. Even though it supports testing a variety of applications it is especially useful for debugging and snooping of web applications. PureTest includes a HTTP Recorder and Web...

radare

radare 1.5.2

radare is a toolchain that aims to create a complete set of utilities for handling binary files from the command line. The project is mainly an hexadecimal editor for the command line but with advanced features.There are extensions for debugging processes...

xtrace

xtrace 0.4

xtrace is a Python module that prints function trace to stdout from the moment it is called:import xtracextrace.start()...xtrace.stop()The output format is that of Xdebug http://xdebug.org/docs/execution_trace But frankly, I didn't have time to polish it...