• Stars
    star
    137
  • Rank 264,879 (Top 6 %)
  • Language
    Python
  • License
    GNU General Publi...
  • Created over 9 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A gdb-like Python3 Debugger in the Trepan family

CircleCI Pypi Installs License Supported Python Versions

packagestatus

Abstract

This is a gdb-like debugger for Python. It is a rewrite of pdb from the ground up. It is both a high-level debugger as well as a lower-level bytecode debugger. By lower-level debugger, I mean that it understands a lot about byte code and will try to make use of that in its normal higher-level instructions.

A command-line interface (CLI) is provided as well as an remote access interface over TCP/IP.

See the Tutorial for how to use. See ipython-trepan for using this in ipython or an ipython notebook.

This package is for Python 3.2 and above. See trepan2 for the same code modified to work with Python 2.

Features

Since this debugger is similar to other trepanning debuggers and gdb in general, knowledge gained by learning this is transferable to those debuggers and vice versa.

There's a lot of cool stuff here that's not in the stock Python debugger pdb, or in any other Python debugger that I know about.

More Exact location information

Python reports line information on the granularity of a line. To get more precise information, we can (de)parse into Python the byte code around a bytecode offset such as the place you are stopped at.

So far as I know, there is no other debugger that decompile code at runtime.

See the deparse command for details.

We use information in the line number table in byte to understand which lines are breakpointable, and in which module or function the line appears in. Use info_line to see this information.

In the future we may allow specifiying an offset to indicate which offset to stop at when there are several choices for a given line number.

Debugging Python bytecode (no source available)

You can pass the debugger the name of Python bytecode and many times, the debugger will merrily proceed. This debugger tries very hard find the source code. Either by using the current executable search path (e.g. PATH) or for some by looking inside the bytecode for a filename in the main code object (co_filename) and applying that with a search path which takes into account directory where the bytecode lives.

Failing to find source code this way, and in other situations where source code can't be found, the debugger will decompile the bytecode and use that for showing source test. This allows us to debug `eval`'d or `exec''d code.

But if you happen to know where the source code is located, you can associate a file source code with the current name listed in the bytecode. See the set_substitute command for details here.

Source-code Syntax Colorization

Terminal source code is colorized via pygments . And with that you can set the pygments color style, e.g. "colorful", "paraiso-dark". See set_style . Furthermore, we make use of terminal bold and emphasized text in debugger output and help text. Of course, you can also turn this off. You can use your own pygments_style, provided you have a terminal that supports 256 colors. If your terminal supports the basic ANSI color sequences only, we support that too in both dark and light themes.

Command Completion

GNU readline command completion is available. Command completion is not just a simple static list, but varies depending on the context. For example, for frame-changing commands which take optional numbers, on the list of valid numbers is considered.

Terminal Handling

We can adjust debugger output depending on the line width of your terminal. If it changes, or you want to adjust it, see set_width .

Smart Eval

If you want to evaluate the current source line before it is run in the code, use eval. To evaluate text of a common fragment of line, such as the expression part of an if statement, you can do that with eval?. See eval for more information.

Function Breakpoints

Many Python debuggers only allow setting a breakpoint at a line event and functions are treated like line numbers. But functions and lines are fundamentally different. If I write:

def five(): return 5

this line means has three different kinds of things. First there is the code in Python that defines function five() for the first time. Then there is the function itself, and then there is some code inside that function.

In this debugger, you can give the name of a function by surrounding adding () at the end:

break five()

Also five could be a method of an object that is currently defined when the breakpoint command is given:

self.five()

More Stepping Control

Sometimes you want small steps, and sometimes large stepping.

This fundamental issue is handled in a couple ways:

Step Granularity

There are now step event and next event commands with aliases to s+, s> and so on. The plus-suffixed commands force a different line on a subsequent stop, the dash-suffixed commands don't. Suffixes >, <, and ! specify call, return and exception events respectively. And without a suffix you get the default; this is set by the set different command.

Event Filtering and Tracing

By default the debugger stops at every event: call, return, line, exception, c-call, c-exception. If you just want to stop at line events (which is largely what you happens in pdb) you can. If however you just want to stop at calls and returns, that's possible too. Or pick some combination.

In conjunction with handling all events by default, the event status is shown when stopped. The reason for stopping is also available via info program.

Event Tracing of Calls and Returns

I'm not sure why this was not done before. Probably because of the lack of the ability to set and move by different granularities, tracing calls and returns lead to too many uninteresting stops (such as at the same place you just were at). Also, stopping on function definitions probably also added to this tedium.

Because we're really handling return events, we can show you the return value. (pdb has an "undocumented" retval command that doesn't seem to work.)

Debugger Macros via Python Lambda expressions

There are debugger macros. In gdb, there is a macro debugger command to extend debugger commands.

However Python has its own rich programming language so it seems silly to recreate the macro language that is in gdb. Simpler and more powerful is just to use Python here. A debugger macro here is just a lambda expression which returns a string or a list of strings. Each string returned should be a debugger command.

We also have aliases for the extremely simple situation where you want to give an alias to an existing debugger command. But beware: some commands, like step inspect command suffixes and change their behavior accordingly.

We also envision a number of other ways to allow extension of this debugger either through additional modules, or user-supplied debugger command directories.

Byte-code Instruction Introspection

We do more in the way of looking at the byte codes to give better information. Through this we can provide:

  • a skip command. It is like the jump command, but you don't have to deal with line numbers.
  • disassembly of code fragments. You can now disassemble relative to the stack frames you are currently stopped at.
  • Better interpretation of where you are when inside execfile or exec. (But really though this is probably a Python compiler misfeature.)
  • Check that breakpoints are set only where they make sense.
  • A more accurate determination of if you are at a function-defining def or class statements (because the caller instruction contains MAKE_FUNCTION or BUILD_CLASS.)

Even without "deparsing" mentioned above, the ability to disassemble where the PC is currently located (see info pc), by line number range or byte-offset range lets you tell exactly where you are and code is getting run.

Some Debugger Command Arguments can be Variables and Expressions

Commands that take integer arguments like up, list, or disassemble allow you to use a Python expression which may include local or global variables that evaluates to an integer. This eliminates the need in gdb for special "dollar" debugger variables. (Note however because of shlex parsing, expressions can't have embedded blanks.)

Out-of-Process Debugging

You can now debug your program in a different process or even a different computer on a different network!

Related, is flexible support for remapping path names from file system, e.g. that inside a docker container or on a remote filesystem with locally-installed files. See subst for more information.

Egg, Wheel, and Tarballs

Can be installed via the usual pip or easy_install. There is a source tarball. How To Install has full instructions and installing from git and by other means.

Modularity

The Debugger plays nice with other trace hooks. You can have several debugger objects.

Many of the things listed below doesn't directly effect end-users, but it does eventually by way of more robust and featureful code. And keeping developers happy is a good thing.(TM)

  • Commands and subcommands are individual classes now, not methods in a class. This means they now have properties like the context in which they can be run, minimum abbreviation name or alias names. To add a new command you basically add a file in a directory.
  • I/O is it's own layer. This simplifies interactive readline behavior from reading commands over a TCP socket.
  • An interface is it's own layer. Local debugging, remote debugging, running debugger commands from a file (source) are different interfaces. This means, for example, that we are able to give better error reporting if a debugger command file has an error.
  • There is an experimental Python-friendly interface for front-ends
  • more testable. Much more unit and functional tests. More of pydb's integration test will eventually be added.

Documentation

Documentation: http://python3-trepan.readthedocs.org

See Also

More Repositories

1

python-uncompyle6

A cross-version Python bytecode decompiler
Python
3,298
star
2

python-decompile3

Python decompiler for 3.7-3.8 Stripped down from uncompyle6 so we can refactor and start to fix up some long-standing problems
Python
900
star
3

remake

Enhanced GNU Make - tracing, error reporting, debugging, profiling and more
C
776
star
4

zshdb

gdb-like "trepan" debugger for zsh
Shell
288
star
5

python-xdis

Python cross-version bytecode library and disassembler
Python
223
star
6

elisp-bytecode

Let's document Emacs Lisp Bytecode (Lisp Assembly Program) instructions
Emacs Lisp
178
star
7

python-xasm

Python cross version bytecode/wordcode assembler
Python
88
star
8

python2-trepan

A gdb-like Python 2.x Debugger in the Trepan family
Python
88
star
9

rb-trepanning

Ruby MRI 2.1.5, 1.9.3 or 1.9.2 debugger. See also rbx-trepanning
Ruby
73
star
10

python-control-flow

Control-Flow, Dominator Tree, and dot output from Python bytecode
Python
47
star
11

python-spark

An Earley-Algorithm Context-free grammar Parser Toolkit
Python
44
star
12

libcdio-paranoia

CD paranoia on top of libcdio
C
43
star
13

go-fish

A simple go REPL building on top of the go-interactive expression evaluator
Go
41
star
14

columnize

Arrange an array aligned in columns vertically or horizontally.
Ruby
37
star
15

Perl-Devel-Trepan

Perl port of trepanning debugger
Perl
35
star
16

kshdb

Korn Shell (93v- 2014-12-24 or greater) Debugger
Shell
33
star
17

ssa-interp

A Go SSA Debugger and Interpreter
Go
31
star
18

emacs-load-relative

Relative loads for Emacs Lisp files. Adds functions __FILE__ and load-relative and require-relative.
Emacs Lisp
29
star
19

emacs-test-simple

Unit tests for GNU emacs that work interactively and in batch
Emacs Lisp
27
star
20

elisp-decompile

Emacs Lisp Decompiler
Python
26
star
21

pydb

Older python debugger (please use python-trepan2 instead)
Python
23
star
22

shell-term-background

POSIX shell scripts to figure out if a terminal has a dark or light background
Shell
23
star
23

rb-threadframe

Frame introspection in Ruby 2.1.5, 1.9.3 and 1.9.2
C
17
star
24

trepan-xpy

Debugger in the Trepan family for x-python
Python
16
star
25

pycolumnize

Python module to align a simple (not nested) list in columns. Adapted from the routine of the same name inside cmd.py
Python
15
star
26

trepanjs

A more gdb-like debugger for nodejs. In style of the trepan family of debuggers.
JavaScript
15
star
27

elisp-earley

Earley parser in Emacs Lisp
Emacs Lisp
15
star
28

rbx-trepanning

Ruby debugger for Rubinius 2.0x. See also rb-trepanning
Ruby
14
star
29

ipython-trepan

Add ipython magic to call python trepan
Python
12
star
30

emacs-loc-changes

Emacs package to help users and programs keep track of positions even after buffer changes.
Emacs Lisp
10
star
31

go-play

Automatically exported from code.google.com/p/go-play
JavaScript
9
star
32

pycdio

Python interface to the libcdio - the CD Input and Control library
Python
9
star
33

trepan-ni

A more gdb-like (v8) node-inspect (v8), in the trepan debugger family
JavaScript
7
star
34

solc-lsp

LSP functions for solidity using solc's AST
TypeScript
7
star
35

python2ruby

A real hacky way to convert between Python and Ruby
Emacs Lisp
7
star
36

vcdimager

GNU VCDImager
C
7
star
37

pytest-trepan

pytest plugin to invoke the trepan debugger
Python
6
star
38

emacs-test-unit

Simple Emacs Test/Unit framework (but see also emacs-test-simple)
Emacs Lisp
6
star
39

go-eval

Fork of 0xfaded/go-eval before API change that broke ssa-interp. This is temporary until ssa-interp is fixed properly.
Go
6
star
40

solc-vscode

Microsoft LSP functions VSCode extension for Solidity
TypeScript
6
star
41

p5-Term-ReadLine-Perl5

A Perl5 implementation GNU Readline
Perl
5
star
42

rocky.github.com

Rocky's talks
JavaScript
5
star
43

rbx-require-relative

Ruby 1.9's require_relative for rubinius and MRI 1.8. Compatibility on 1.9..2
Ruby
5
star
44

linecache

Read and cache Ruby source-code file information
Ruby
4
star
45

go-gnureadline

Go bindings for GNU Readline
Go
4
star
46

python-loctraceback

Python 3.6 API traceback module adding in fragment decomplation info for more precise location information
Python
3
star
47

rbx-tracer

set_trace_func for Rubinius
Ruby
3
star
48

rb-lpsolve

Ruby bindings for lpsolve 5.5.10
C
3
star
49

gjchaitin

Two years circa 1982 I knew GJChaitin
TeX
3
star
50

pytracer

Automatically exported from code.google.com/p/pytracer
Python
3
star
51

Perl-Array-Columnize

Display Arrays in nice columns. Port of Ruby Columnize
Perl
3
star
52

rb-parsetree19

C Extension to support ParseTree for Ruby 1.9
Ruby
3
star
53

rb-trace

Ruby trace hook enhancements
Ruby
3
star
54

solidity-language-server

TypeScript
3
star
55

bashdb

Bash debugger (code imported from sourceforge)
Shell
3
star
56

decompile-2.4

Python decompiler for Python 1.5-2.4 (for historical archive)
Python
2
star
57

Perl-Syntax

Perl module for syntax checking a string or Perl file. Like perl -c, but with more control over output
Perl
2
star
58

go-types

Freeze save code.google.com/p/go.tools/go/types before API changed and broke go-fish
Go
2
star
59

klondike

A slightly less lame version of gnome-games klondike solitaire program
Scheme
2
star
60

rb8-trepanning

Backport of rb{,x}-trepanning to MRI 1.8 with some tolerance for MRI 1.9.2
Ruby
2
star
61

ps-watcher

Rewrite of sourceforge ps-watcher in Ruby
Ruby
2
star
62

Perl-Devel-Callsite

Get caller Perl OP address
Perl
2
star
63

go-importer

Freeze save code.google.com/p/go.tools/importer before API changed and broke go-fish
Go
2
star
64

Perl-Devel-Trepan-TTY

Remote debugging support via pseudo ttys
Perl
2
star
65

csharp-columnize

C# version of Ruby columnize
C#
1
star
66

Perl-Task-Trepan

A Perl task to get the most out of Devel::Trepan
Perl
1
star
67

um

Universal machine
Python
1
star
68

Perl-Devel-Trepan-Disassemble

Adds "disassemble" command to Perl-Devel-Trepan
Perl
1
star
69

go-gcimporter

Freeze save code.google.com/p/go.tools/go/gcimporter before API changed and broke go-fish
Go
1
star
70

ruby19-headers

Additional Ruby 1.9 headers for introspection (rb-threadframe, rb-parsetree19)
C
1
star
71

p5-lead-sentence

Find leading sentence in some text
Perl
1
star
72

python-filecache

module for Python module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times.
Python
1
star
73

python-deparse

deparse fragments of python code (via uncompyle)
Python
1
star
74

Perl-B-CodeLines

List executable lines of a Perl program
Perl
1
star
75

p5-B-DeparseTree

Perl's B::Deparse saving OP Tree Information and text fragments accessible by OP address
Perl
1
star
76

Perl-Devel-Trepan-Shell

Adds an Interactive Shell to Devel::Trepan
Perl
1
star
77

Perl-Devel-Trepan-Psh

Devel::Trepan plugin to add an interactive shell via "psh"
Perl
1
star
78

irb-method-capture

Save module, methods and classes in irb exactly the way you entered them
Ruby
1
star
79

python-perl-translations

1
star
80

go-columnize

A Go module to format a simple (i.e. not nested) list into aligned columns.
Go
1
star
81

mult-by-constants

Code, library, and tables to search for optimal sequences of shift, adds, and subtracts to multiply by a constant.
Jupyter Notebook
1
star
82

p5-Term-ReadLine-Perl5-Demo

Shell for learning and experimenting with Term::ReadLine::Perl5
Perl
1
star
83

go-loader

fork of "experimental" loader which breaks our code too much can causes too much unappreciated reworking.
Go
1
star
84

emacs.d-modes

My customized emacs.d modes
Emacs Lisp
1
star
85

pfor

A simple server blast script
Perl
1
star
86

p5-Devel-Trepan-Deparse

Adds a "deparse" command to Devel::Trepan
Perl
1
star
87

go-astutil

Copy of golang.org/x/tools/astutil. It is a pity one has to resort to tricks like this, but one can't rely on golang.org/x/tools/astutil, what it was called before or is called now or (possibly) the API
Go
1
star
88

Perl-Device-Cdio

Perl bindings for libcdio
Perl
1
star
89

Perl-Devel-Trepan-BWProcessor

Bullwinkle Protocol Processor for Devel::Trepan - useful for front-ends controlling Devel::Trepan
Perl
1
star
90

pygtk3-pstree

GNU/Linux process tree animation in real time using PyGTK
Python
1
star