haypo / python-ptrace

python-ptrace is a debugger using ptrace (Linux, BSD and Darwin system call to trace processes) written in Python. python-ptrace is an opensource project (contribute!) written in Python under GNU GPLv2 license.

Clone this repository (size: 221.4 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/haypo/python-ptrace/
commit 114: b8e9fb9ca3fb
parent 113: c31efbb348d3
branch: default
gdb.py: use raw string for follow help
ha...@marge.
4 months ago

Changed (Δ1 byte):

raw changeset »

gdb.py (1 lines added, 1 lines removed)

Up to file-list gdb.py:

@@ -70,7 +70,7 @@ COMMANDS = (
70
70
    ("proclist", "list of traced processes"),
71
71
    ("switch", "switch active process (switch or switch <pid>)"),
72
72
73
    ("follow", 'follow a term (eg. "follow \'\\x12\\x14\\x27\\x13\'")'),
73
    ("follow", r'''follow a term (eg. "follow '\x12\x14\x27\x13'")'''),
74
74
    ("showfollow", 'show all "followed" terms'),
75
75
    ("resetfollow", 'reset all "followed" terms'),
76
76
    ("xray", 'show addresses of (and possible pointers to) "followed" terms'),