├── .circleci └── config.yml ├── .coveragerc ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .travis.yml ├── CHANGES.txt ├── COPYING ├── MANIFEST.in ├── Makefile ├── NEWS.md ├── PYTHONSTARTUP └── pythonrc ├── README.rst ├── __pkginfo__.py ├── admin-tools ├── check-newer-versions.sh ├── check-older-versions.sh ├── checkout_common.sh ├── make-dist-newer.sh ├── make-dist-older.sh ├── make-docs.sh ├── merge-for-2.4.sh ├── pyenv-newer-versions ├── pyenv-older-versions ├── setup-master.sh └── setup-python-2.4.sh ├── appveyor.yml ├── appveyor ├── install.ps1 └── run_with_env.cmd ├── bin └── trepan2 ├── celery ├── README.md └── ctrepan.py ├── circle.yml ├── doc-convert ├── .gitignore └── toRsT.py ├── docs ├── .gitignore ├── Makefile ├── commands.rst ├── commands │ ├── Makefile │ ├── breakpoints.rst │ ├── breakpoints │ │ ├── Makefile │ │ ├── break.rst │ │ ├── clear.rst │ │ ├── condition.rst │ │ ├── delete.rst │ │ ├── disable.rst │ │ ├── enable.rst │ │ └── tbreak.rst │ ├── data.rst │ ├── data │ │ ├── Makefile │ │ ├── deparse.rst │ │ ├── disassemble.rst │ │ ├── display.rst │ │ ├── eval.rst │ │ ├── examine.rst │ │ ├── pdef.rst │ │ ├── pp.rst │ │ ├── pr.rst │ │ ├── pydocx.rst │ │ ├── undisplay.rst │ │ └── whatis.rst │ ├── files.rst │ ├── files │ │ ├── Makefile │ │ ├── edit.rst │ │ └── list.rst │ ├── info.rst │ ├── info │ │ ├── Makefile │ │ ├── args.rst │ │ ├── break.rst │ │ ├── builtins.rst │ │ ├── code.rst │ │ ├── display.rst │ │ ├── files.rst │ │ ├── frame.rst │ │ ├── globals.rst │ │ ├── line.rst │ │ ├── lines.rst │ │ ├── locals.rst │ │ ├── macro.rst │ │ ├── pc.rst │ │ ├── program.rst │ │ ├── return.rst │ │ ├── signals.rst │ │ ├── source.rst │ │ └── threads.rst │ ├── running.rst │ ├── running │ │ ├── Makefile │ │ ├── continue.rst │ │ ├── exit.rst │ │ ├── finish.rst │ │ ├── jump.rst │ │ ├── kill.rst │ │ ├── next.rst │ │ ├── quit.rst │ │ ├── restart.rst │ │ ├── run.rst │ │ ├── skip.rst │ │ └── step.rst │ ├── set.rst │ ├── set │ │ ├── Makefile │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── autopython.rst │ │ ├── basename.rst │ │ ├── cmdtrace.rst │ │ ├── confirm.rst │ │ ├── dbg_trepan.rst │ │ ├── different.rst │ │ ├── events.rst │ │ ├── flush.rst │ │ ├── highlight.rst │ │ ├── listsize.rst │ │ ├── maxstring.rst │ │ ├── patsub.rst │ │ ├── skip.rst │ │ ├── style.rst │ │ ├── substitute.rst │ │ ├── tempdir.rst │ │ ├── trace.rst │ │ └── width.rst │ ├── show.rst │ ├── show │ │ ├── Makefile │ │ ├── aliases.rst │ │ ├── args.rst │ │ ├── autoeval.rst │ │ ├── autolist.rst │ │ ├── autopython.rst │ │ ├── basename.rst │ │ ├── cmdtrace.rst │ │ ├── confirm.rst │ │ ├── dbg_trepan.rst │ │ ├── different.rst │ │ ├── events.rst │ │ ├── highlight.rst │ │ ├── listsize.rst │ │ ├── maxstring.rst │ │ ├── skip.rst │ │ ├── style.rst │ │ ├── tempdir.rst │ │ ├── trace.rst │ │ └── width.rst │ ├── stack.rst │ ├── stack │ │ ├── Makefile │ │ ├── backtrace.rst │ │ ├── down.rst │ │ ├── frame.rst │ │ └── up.rst │ ├── support.rst │ └── support │ │ ├── Makefile │ │ ├── alias.rst │ │ ├── bpython.rst │ │ ├── debug.rst │ │ ├── help.rst │ │ ├── ipython.rst │ │ ├── macro.rst │ │ ├── python.rst │ │ ├── source.rst │ │ └── unalias.rst ├── conf.py ├── entry-exit.rst ├── features.rst ├── index.rst ├── install.rst ├── make.bat ├── manpages.rst ├── manpages │ ├── Makefile │ ├── trepan2.rst │ └── trepan2c.rst ├── syntax.rst └── syntax │ ├── arange.rst │ ├── command.rst │ ├── examples.rst │ ├── filename.rst │ ├── location.rst │ ├── range.rst │ └── suffixes.rst ├── gitbranch-master ├── ipython └── ipy_pydbgr.py ├── pydbg.ChangeLog ├── requirements-dev.txt ├── rst2html.py ├── setup.cfg ├── setup.py ├── test ├── Makefile ├── data │ ├── Makefile │ ├── highlight-pypy.right │ ├── highlight.cmd │ ├── highlight.right │ ├── macro-pypy.right │ ├── macro.cmd │ ├── macro.right │ ├── noscript-pypy.right │ ├── noscript.cmd │ ├── noscript.right │ ├── step-pypy.right │ ├── step.cmd │ └── step.right ├── example │ ├── bgthread.py │ ├── eval.py │ ├── expr.py │ ├── expr2.py │ ├── fib-exec.py │ ├── fib.py │ ├── gcd-dbgcall.py │ ├── gcd.py │ ├── hanoi.py │ ├── multi-line.py │ ├── q-dbgcall.py │ ├── q.py │ ├── sigtest.py │ ├── tail.py │ ├── threading_urls.py │ ├── tlock.py │ └── twocall.py ├── functional │ ├── Makefile │ ├── fn_helper.py │ ├── setup.cfg │ ├── setup.py │ ├── test-break.py │ ├── test-finish.py │ ├── test-jump.py │ ├── test-next.py │ ├── test-sig.py │ ├── test-skip.py │ └── test-step.py ├── integration │ ├── Makefile │ ├── helper.py │ ├── setup.cfg │ ├── setup.py │ ├── test-general.py │ ├── test-highlight.py │ └── test-noscript.py ├── make-check-filter.py └── unit │ ├── Makefile │ ├── cmdhelper.py │ ├── test-break.py │ ├── test-brkpt.py │ ├── test-bytecode.py │ ├── test-clifns.py │ ├── test-cmd-alias.py │ ├── test-cmdbreak.py │ ├── test-cmdfns.py │ ├── test-cmdproc.py │ ├── test-completion.py │ ├── test-core.py │ ├── test-disassemble.py │ ├── test-except.py │ ├── test-fifo.py │ ├── test-finish.py │ ├── test-help.py │ ├── test-info-files.py │ ├── test-inout-input.py │ ├── test-kill.py │ ├── test-lib-complete.py │ ├── test-lib-display.py │ ├── test-lib-eval.py │ ├── test-lib-file.py │ ├── test-lib-format.py │ ├── test-lib-pp.py │ ├── test-lib-printing.py │ ├── test-lib-sig.py │ ├── test-lib-thread.py │ ├── test-list.py │ ├── test-misc.py │ ├── test-pdef.py │ ├── test-print.py │ ├── test-processor.py │ ├── test-quit.py │ ├── test-run.py │ ├── test-stack.py │ ├── test-step.py │ ├── test-subcmd.py │ ├── test-tcp.py │ └── test-user.py ├── tox.ini └── trepan ├── __init__.py ├── __main__.py ├── api.py ├── bwcli.py ├── bwprocessor ├── __init__.py ├── command │ ├── __init__.py │ ├── base_cmd.py │ ├── mock.py │ ├── quit.py │ └── step.py ├── location.py ├── main.py └── msg.py ├── client.py ├── clifns.py ├── debugger.py ├── exception.py ├── inout ├── __init__.py ├── base.py ├── fifoclient.py ├── fifoserver.py ├── input.py ├── output.py ├── scriptin.py ├── stringarray.py ├── tcpclient.py ├── tcpfns.py └── tcpserver.py ├── interface.py ├── interfaces ├── Makefile ├── __init__.py ├── bullwinkle.py ├── client.py ├── comcodes.py ├── script.py ├── server.py └── user.py ├── lib ├── __init__.py ├── breakpoint.py ├── bytecode.py ├── complete.py ├── core.py ├── default.py ├── deparse.py ├── disassemble.py ├── display.py ├── eval.py ├── file.py ├── format.py ├── pp.py ├── printing.py ├── sighandler.py ├── stack.py └── thred.py ├── misc.py ├── options.py ├── post_mortem.py ├── processor ├── __init__.py ├── cmd_addrlist.py ├── cmdbreak.py ├── cmdfns.py ├── cmdlist.py ├── cmdproc.py ├── command │ ├── Makefile │ ├── __init__.py │ ├── alias.py │ ├── backtrace.py │ ├── base_cmd.py │ ├── base_subcmd.py │ ├── base_submgr.py │ ├── bpy.py │ ├── break.py │ ├── cd.py │ ├── clear.py │ ├── condition.py │ ├── continue.py │ ├── debug.py │ ├── delete.py │ ├── deparse.py │ ├── deval.py │ ├── disable.py │ ├── disassemble.py │ ├── display.py │ ├── down.py │ ├── edit.py │ ├── enable.py │ ├── eval.py │ ├── examine.py │ ├── exit.py │ ├── finish.py │ ├── frame.py │ ├── handle.py │ ├── help.py │ ├── help │ │ ├── .gitignore │ │ ├── README │ │ ├── arange.rst │ │ ├── command.rst │ │ ├── examples.rst │ │ ├── filename.rst │ │ ├── location.rst │ │ ├── range.rst │ │ └── suffixes.rst │ ├── info.py │ ├── info_subcmd │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── args.py │ │ ├── break.py │ │ ├── builtins.py │ │ ├── code.py │ │ ├── display.py │ │ ├── files.py │ │ ├── frame.py │ │ ├── globals.py │ │ ├── line.py │ │ ├── lines.py │ │ ├── locals.py │ │ ├── macro.py │ │ ├── offsets.py │ │ ├── pc.py │ │ ├── program.py │ │ ├── return.py │ │ ├── signals.py │ │ ├── source.py │ │ └── threads.py │ ├── ipython.py │ ├── jump.py │ ├── kill.py │ ├── list.py │ ├── macro.py │ ├── mock.py │ ├── next.py │ ├── p.py │ ├── pdef.py │ ├── pp.py │ ├── pydocx.py │ ├── python.py │ ├── quit.py │ ├── restart.py │ ├── run.py │ ├── set.py │ ├── set_subcmd │ │ ├── __demo_helper__.py │ │ ├── __init__.py │ │ ├── asmfmt.py │ │ ├── autoeval.py │ │ ├── autoipython.py.bad │ │ ├── autolist.py │ │ ├── autopython.py │ │ ├── basename.py │ │ ├── cmdtrace.py │ │ ├── confirm.py │ │ ├── dbg_trepan.py │ │ ├── different.py │ │ ├── events.py │ │ ├── highlight.py │ │ ├── listsize.py │ │ ├── maxstring.py │ │ ├── patsub.py │ │ ├── skip.py │ │ ├── style.py │ │ ├── substitute.py │ │ ├── tempdir.py │ │ ├── trace.py │ │ └── width.py │ ├── show.py │ ├── show_subcmd │ │ ├── __demo_helper__.py │ │ ├── __init__.py │ │ ├── aliases.py │ │ ├── args.py │ │ ├── asmfmt.py │ │ ├── autoeval.py │ │ ├── autolist.py │ │ ├── autopython.py │ │ ├── basename.py │ │ ├── cmdtrace.py │ │ ├── confirm.py │ │ ├── dbg_trepan.py │ │ ├── different.py │ │ ├── events.py │ │ ├── highlight.py │ │ ├── listsize.py │ │ ├── maxstring.py │ │ ├── skip.py │ │ ├── style.py │ │ ├── tempdir.py │ │ ├── trace.py │ │ └── width.py │ ├── skip.py │ ├── source.py │ ├── step.py │ ├── tbreak.py │ ├── unalias.py │ ├── undisplay.py │ ├── up.py │ └── whatis.py ├── complete.py ├── frame.py ├── location.py ├── parse │ ├── __init__.py │ ├── parser.py │ ├── scanner.py │ ├── semantics.py │ └── tok.py ├── printing.py ├── subcmd.py └── trace.py ├── version.py └── vprocessor.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/NEWS.md -------------------------------------------------------------------------------- /PYTHONSTARTUP/pythonrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/PYTHONSTARTUP/pythonrc -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/README.rst -------------------------------------------------------------------------------- /__pkginfo__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/__pkginfo__.py -------------------------------------------------------------------------------- /admin-tools/check-newer-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/check-newer-versions.sh -------------------------------------------------------------------------------- /admin-tools/check-older-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/check-older-versions.sh -------------------------------------------------------------------------------- /admin-tools/checkout_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/checkout_common.sh -------------------------------------------------------------------------------- /admin-tools/make-dist-newer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/make-dist-newer.sh -------------------------------------------------------------------------------- /admin-tools/make-dist-older.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/make-dist-older.sh -------------------------------------------------------------------------------- /admin-tools/make-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/make-docs.sh -------------------------------------------------------------------------------- /admin-tools/merge-for-2.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/merge-for-2.4.sh -------------------------------------------------------------------------------- /admin-tools/pyenv-newer-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/pyenv-newer-versions -------------------------------------------------------------------------------- /admin-tools/pyenv-older-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/pyenv-older-versions -------------------------------------------------------------------------------- /admin-tools/setup-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/setup-master.sh -------------------------------------------------------------------------------- /admin-tools/setup-python-2.4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/admin-tools/setup-python-2.4.sh -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/appveyor.yml -------------------------------------------------------------------------------- /appveyor/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/appveyor/install.ps1 -------------------------------------------------------------------------------- /appveyor/run_with_env.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/appveyor/run_with_env.cmd -------------------------------------------------------------------------------- /bin/trepan2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/bin/trepan2 -------------------------------------------------------------------------------- /celery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/celery/README.md -------------------------------------------------------------------------------- /celery/ctrepan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/celery/ctrepan.py -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/circle.yml -------------------------------------------------------------------------------- /doc-convert/.gitignore: -------------------------------------------------------------------------------- 1 | commands 2 | -------------------------------------------------------------------------------- /doc-convert/toRsT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/doc-convert/toRsT.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/commands/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/Makefile -------------------------------------------------------------------------------- /docs/commands/breakpoints/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/break.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/clear.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/clear.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/condition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/condition.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/delete.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/disable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/disable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/enable.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/enable.rst -------------------------------------------------------------------------------- /docs/commands/breakpoints/tbreak.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/breakpoints/tbreak.rst -------------------------------------------------------------------------------- /docs/commands/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data.rst -------------------------------------------------------------------------------- /docs/commands/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/Makefile -------------------------------------------------------------------------------- /docs/commands/data/deparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/deparse.rst -------------------------------------------------------------------------------- /docs/commands/data/disassemble.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/disassemble.rst -------------------------------------------------------------------------------- /docs/commands/data/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/display.rst -------------------------------------------------------------------------------- /docs/commands/data/eval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/eval.rst -------------------------------------------------------------------------------- /docs/commands/data/examine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/examine.rst -------------------------------------------------------------------------------- /docs/commands/data/pdef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/pdef.rst -------------------------------------------------------------------------------- /docs/commands/data/pp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/pp.rst -------------------------------------------------------------------------------- /docs/commands/data/pr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/pr.rst -------------------------------------------------------------------------------- /docs/commands/data/pydocx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/pydocx.rst -------------------------------------------------------------------------------- /docs/commands/data/undisplay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/undisplay.rst -------------------------------------------------------------------------------- /docs/commands/data/whatis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/data/whatis.rst -------------------------------------------------------------------------------- /docs/commands/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/files.rst -------------------------------------------------------------------------------- /docs/commands/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/files/Makefile -------------------------------------------------------------------------------- /docs/commands/files/edit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/files/edit.rst -------------------------------------------------------------------------------- /docs/commands/files/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/files/list.rst -------------------------------------------------------------------------------- /docs/commands/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info.rst -------------------------------------------------------------------------------- /docs/commands/info/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/Makefile -------------------------------------------------------------------------------- /docs/commands/info/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/args.rst -------------------------------------------------------------------------------- /docs/commands/info/break.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/break.rst -------------------------------------------------------------------------------- /docs/commands/info/builtins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/builtins.rst -------------------------------------------------------------------------------- /docs/commands/info/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/code.rst -------------------------------------------------------------------------------- /docs/commands/info/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/display.rst -------------------------------------------------------------------------------- /docs/commands/info/files.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/files.rst -------------------------------------------------------------------------------- /docs/commands/info/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/frame.rst -------------------------------------------------------------------------------- /docs/commands/info/globals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/globals.rst -------------------------------------------------------------------------------- /docs/commands/info/line.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/line.rst -------------------------------------------------------------------------------- /docs/commands/info/lines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/lines.rst -------------------------------------------------------------------------------- /docs/commands/info/locals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/locals.rst -------------------------------------------------------------------------------- /docs/commands/info/macro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/macro.rst -------------------------------------------------------------------------------- /docs/commands/info/pc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/pc.rst -------------------------------------------------------------------------------- /docs/commands/info/program.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/program.rst -------------------------------------------------------------------------------- /docs/commands/info/return.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/return.rst -------------------------------------------------------------------------------- /docs/commands/info/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/signals.rst -------------------------------------------------------------------------------- /docs/commands/info/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/source.rst -------------------------------------------------------------------------------- /docs/commands/info/threads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/info/threads.rst -------------------------------------------------------------------------------- /docs/commands/running.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running.rst -------------------------------------------------------------------------------- /docs/commands/running/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/Makefile -------------------------------------------------------------------------------- /docs/commands/running/continue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/continue.rst -------------------------------------------------------------------------------- /docs/commands/running/exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/exit.rst -------------------------------------------------------------------------------- /docs/commands/running/finish.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/finish.rst -------------------------------------------------------------------------------- /docs/commands/running/jump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/jump.rst -------------------------------------------------------------------------------- /docs/commands/running/kill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/kill.rst -------------------------------------------------------------------------------- /docs/commands/running/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/next.rst -------------------------------------------------------------------------------- /docs/commands/running/quit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/quit.rst -------------------------------------------------------------------------------- /docs/commands/running/restart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/restart.rst -------------------------------------------------------------------------------- /docs/commands/running/run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/run.rst -------------------------------------------------------------------------------- /docs/commands/running/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/skip.rst -------------------------------------------------------------------------------- /docs/commands/running/step.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/running/step.rst -------------------------------------------------------------------------------- /docs/commands/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set.rst -------------------------------------------------------------------------------- /docs/commands/set/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/Makefile -------------------------------------------------------------------------------- /docs/commands/set/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/set/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/autolist.rst -------------------------------------------------------------------------------- /docs/commands/set/autopython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/autopython.rst -------------------------------------------------------------------------------- /docs/commands/set/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/basename.rst -------------------------------------------------------------------------------- /docs/commands/set/cmdtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/cmdtrace.rst -------------------------------------------------------------------------------- /docs/commands/set/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/confirm.rst -------------------------------------------------------------------------------- /docs/commands/set/dbg_trepan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/dbg_trepan.rst -------------------------------------------------------------------------------- /docs/commands/set/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/different.rst -------------------------------------------------------------------------------- /docs/commands/set/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/events.rst -------------------------------------------------------------------------------- /docs/commands/set/flush.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/flush.rst -------------------------------------------------------------------------------- /docs/commands/set/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/highlight.rst -------------------------------------------------------------------------------- /docs/commands/set/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/listsize.rst -------------------------------------------------------------------------------- /docs/commands/set/maxstring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/maxstring.rst -------------------------------------------------------------------------------- /docs/commands/set/patsub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/patsub.rst -------------------------------------------------------------------------------- /docs/commands/set/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/skip.rst -------------------------------------------------------------------------------- /docs/commands/set/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/style.rst -------------------------------------------------------------------------------- /docs/commands/set/substitute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/substitute.rst -------------------------------------------------------------------------------- /docs/commands/set/tempdir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/tempdir.rst -------------------------------------------------------------------------------- /docs/commands/set/trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/trace.rst -------------------------------------------------------------------------------- /docs/commands/set/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/set/width.rst -------------------------------------------------------------------------------- /docs/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show.rst -------------------------------------------------------------------------------- /docs/commands/show/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/Makefile -------------------------------------------------------------------------------- /docs/commands/show/aliases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/aliases.rst -------------------------------------------------------------------------------- /docs/commands/show/args.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/args.rst -------------------------------------------------------------------------------- /docs/commands/show/autoeval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/autoeval.rst -------------------------------------------------------------------------------- /docs/commands/show/autolist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/autolist.rst -------------------------------------------------------------------------------- /docs/commands/show/autopython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/autopython.rst -------------------------------------------------------------------------------- /docs/commands/show/basename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/basename.rst -------------------------------------------------------------------------------- /docs/commands/show/cmdtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/cmdtrace.rst -------------------------------------------------------------------------------- /docs/commands/show/confirm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/confirm.rst -------------------------------------------------------------------------------- /docs/commands/show/dbg_trepan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/dbg_trepan.rst -------------------------------------------------------------------------------- /docs/commands/show/different.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/different.rst -------------------------------------------------------------------------------- /docs/commands/show/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/events.rst -------------------------------------------------------------------------------- /docs/commands/show/highlight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/highlight.rst -------------------------------------------------------------------------------- /docs/commands/show/listsize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/listsize.rst -------------------------------------------------------------------------------- /docs/commands/show/maxstring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/maxstring.rst -------------------------------------------------------------------------------- /docs/commands/show/skip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/skip.rst -------------------------------------------------------------------------------- /docs/commands/show/style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/style.rst -------------------------------------------------------------------------------- /docs/commands/show/tempdir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/tempdir.rst -------------------------------------------------------------------------------- /docs/commands/show/trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/trace.rst -------------------------------------------------------------------------------- /docs/commands/show/width.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/show/width.rst -------------------------------------------------------------------------------- /docs/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack.rst -------------------------------------------------------------------------------- /docs/commands/stack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack/Makefile -------------------------------------------------------------------------------- /docs/commands/stack/backtrace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack/backtrace.rst -------------------------------------------------------------------------------- /docs/commands/stack/down.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack/down.rst -------------------------------------------------------------------------------- /docs/commands/stack/frame.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack/frame.rst -------------------------------------------------------------------------------- /docs/commands/stack/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/stack/up.rst -------------------------------------------------------------------------------- /docs/commands/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support.rst -------------------------------------------------------------------------------- /docs/commands/support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/Makefile -------------------------------------------------------------------------------- /docs/commands/support/alias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/alias.rst -------------------------------------------------------------------------------- /docs/commands/support/bpython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/bpython.rst -------------------------------------------------------------------------------- /docs/commands/support/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/debug.rst -------------------------------------------------------------------------------- /docs/commands/support/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/help.rst -------------------------------------------------------------------------------- /docs/commands/support/ipython.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/ipython.rst -------------------------------------------------------------------------------- /docs/commands/support/macro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/macro.rst -------------------------------------------------------------------------------- /docs/commands/support/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/python.rst -------------------------------------------------------------------------------- /docs/commands/support/source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/source.rst -------------------------------------------------------------------------------- /docs/commands/support/unalias.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/commands/support/unalias.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/entry-exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/entry-exit.rst -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manpages.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/manpages.rst -------------------------------------------------------------------------------- /docs/manpages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/manpages/Makefile -------------------------------------------------------------------------------- /docs/manpages/trepan2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/manpages/trepan2.rst -------------------------------------------------------------------------------- /docs/manpages/trepan2c.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/manpages/trepan2c.rst -------------------------------------------------------------------------------- /docs/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax.rst -------------------------------------------------------------------------------- /docs/syntax/arange.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/arange.rst -------------------------------------------------------------------------------- /docs/syntax/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/command.rst -------------------------------------------------------------------------------- /docs/syntax/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/examples.rst -------------------------------------------------------------------------------- /docs/syntax/filename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/filename.rst -------------------------------------------------------------------------------- /docs/syntax/location.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/location.rst -------------------------------------------------------------------------------- /docs/syntax/range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/range.rst -------------------------------------------------------------------------------- /docs/syntax/suffixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/docs/syntax/suffixes.rst -------------------------------------------------------------------------------- /gitbranch-master: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipython/ipy_pydbgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/ipython/ipy_pydbgr.py -------------------------------------------------------------------------------- /pydbg.ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/pydbg.ChangeLog -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | nose 2 | flake8 3 | unittest2 4 | # rst2html 5 | -------------------------------------------------------------------------------- /rst2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/rst2html.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/setup.py -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/Makefile -------------------------------------------------------------------------------- /test/data/highlight-pypy.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/highlight-pypy.right -------------------------------------------------------------------------------- /test/data/highlight.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/highlight.cmd -------------------------------------------------------------------------------- /test/data/highlight.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/highlight.right -------------------------------------------------------------------------------- /test/data/macro-pypy.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/macro-pypy.right -------------------------------------------------------------------------------- /test/data/macro.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/macro.cmd -------------------------------------------------------------------------------- /test/data/macro.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/macro.right -------------------------------------------------------------------------------- /test/data/noscript-pypy.right: -------------------------------------------------------------------------------- 1 | trepan2: That's all, folks... 2 | -------------------------------------------------------------------------------- /test/data/noscript.cmd: -------------------------------------------------------------------------------- 1 | # Add more later... 2 | # list 3 | 4 | quit! 5 | -------------------------------------------------------------------------------- /test/data/noscript.right: -------------------------------------------------------------------------------- 1 | trepan2: That's all, folks... 2 | -------------------------------------------------------------------------------- /test/data/step-pypy.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/step-pypy.right -------------------------------------------------------------------------------- /test/data/step.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/step.cmd -------------------------------------------------------------------------------- /test/data/step.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/data/step.right -------------------------------------------------------------------------------- /test/example/bgthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/bgthread.py -------------------------------------------------------------------------------- /test/example/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/eval.py -------------------------------------------------------------------------------- /test/example/expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/expr.py -------------------------------------------------------------------------------- /test/example/expr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/expr2.py -------------------------------------------------------------------------------- /test/example/fib-exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/fib-exec.py -------------------------------------------------------------------------------- /test/example/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/fib.py -------------------------------------------------------------------------------- /test/example/gcd-dbgcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/gcd-dbgcall.py -------------------------------------------------------------------------------- /test/example/gcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/gcd.py -------------------------------------------------------------------------------- /test/example/hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/hanoi.py -------------------------------------------------------------------------------- /test/example/multi-line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/multi-line.py -------------------------------------------------------------------------------- /test/example/q-dbgcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/q-dbgcall.py -------------------------------------------------------------------------------- /test/example/q.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/q.py -------------------------------------------------------------------------------- /test/example/sigtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/sigtest.py -------------------------------------------------------------------------------- /test/example/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/tail.py -------------------------------------------------------------------------------- /test/example/threading_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/threading_urls.py -------------------------------------------------------------------------------- /test/example/tlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/tlock.py -------------------------------------------------------------------------------- /test/example/twocall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/example/twocall.py -------------------------------------------------------------------------------- /test/functional/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/Makefile -------------------------------------------------------------------------------- /test/functional/fn_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/fn_helper.py -------------------------------------------------------------------------------- /test/functional/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/setup.cfg -------------------------------------------------------------------------------- /test/functional/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/setup.py -------------------------------------------------------------------------------- /test/functional/test-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-break.py -------------------------------------------------------------------------------- /test/functional/test-finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-finish.py -------------------------------------------------------------------------------- /test/functional/test-jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-jump.py -------------------------------------------------------------------------------- /test/functional/test-next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-next.py -------------------------------------------------------------------------------- /test/functional/test-sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-sig.py -------------------------------------------------------------------------------- /test/functional/test-skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-skip.py -------------------------------------------------------------------------------- /test/functional/test-step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/functional/test-step.py -------------------------------------------------------------------------------- /test/integration/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/Makefile -------------------------------------------------------------------------------- /test/integration/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/helper.py -------------------------------------------------------------------------------- /test/integration/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/setup.cfg -------------------------------------------------------------------------------- /test/integration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/setup.py -------------------------------------------------------------------------------- /test/integration/test-general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/test-general.py -------------------------------------------------------------------------------- /test/integration/test-highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/test-highlight.py -------------------------------------------------------------------------------- /test/integration/test-noscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/integration/test-noscript.py -------------------------------------------------------------------------------- /test/make-check-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/make-check-filter.py -------------------------------------------------------------------------------- /test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/Makefile -------------------------------------------------------------------------------- /test/unit/cmdhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/cmdhelper.py -------------------------------------------------------------------------------- /test/unit/test-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-break.py -------------------------------------------------------------------------------- /test/unit/test-brkpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-brkpt.py -------------------------------------------------------------------------------- /test/unit/test-bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-bytecode.py -------------------------------------------------------------------------------- /test/unit/test-clifns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-clifns.py -------------------------------------------------------------------------------- /test/unit/test-cmd-alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-cmd-alias.py -------------------------------------------------------------------------------- /test/unit/test-cmdbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-cmdbreak.py -------------------------------------------------------------------------------- /test/unit/test-cmdfns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-cmdfns.py -------------------------------------------------------------------------------- /test/unit/test-cmdproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-cmdproc.py -------------------------------------------------------------------------------- /test/unit/test-completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-completion.py -------------------------------------------------------------------------------- /test/unit/test-core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-core.py -------------------------------------------------------------------------------- /test/unit/test-disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-disassemble.py -------------------------------------------------------------------------------- /test/unit/test-except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-except.py -------------------------------------------------------------------------------- /test/unit/test-fifo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-fifo.py -------------------------------------------------------------------------------- /test/unit/test-finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-finish.py -------------------------------------------------------------------------------- /test/unit/test-help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-help.py -------------------------------------------------------------------------------- /test/unit/test-info-files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-info-files.py -------------------------------------------------------------------------------- /test/unit/test-inout-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-inout-input.py -------------------------------------------------------------------------------- /test/unit/test-kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-kill.py -------------------------------------------------------------------------------- /test/unit/test-lib-complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-complete.py -------------------------------------------------------------------------------- /test/unit/test-lib-display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-display.py -------------------------------------------------------------------------------- /test/unit/test-lib-eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-eval.py -------------------------------------------------------------------------------- /test/unit/test-lib-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-file.py -------------------------------------------------------------------------------- /test/unit/test-lib-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-format.py -------------------------------------------------------------------------------- /test/unit/test-lib-pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-pp.py -------------------------------------------------------------------------------- /test/unit/test-lib-printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-printing.py -------------------------------------------------------------------------------- /test/unit/test-lib-sig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-sig.py -------------------------------------------------------------------------------- /test/unit/test-lib-thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-lib-thread.py -------------------------------------------------------------------------------- /test/unit/test-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-list.py -------------------------------------------------------------------------------- /test/unit/test-misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-misc.py -------------------------------------------------------------------------------- /test/unit/test-pdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-pdef.py -------------------------------------------------------------------------------- /test/unit/test-print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-print.py -------------------------------------------------------------------------------- /test/unit/test-processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-processor.py -------------------------------------------------------------------------------- /test/unit/test-quit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-quit.py -------------------------------------------------------------------------------- /test/unit/test-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-run.py -------------------------------------------------------------------------------- /test/unit/test-stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-stack.py -------------------------------------------------------------------------------- /test/unit/test-step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-step.py -------------------------------------------------------------------------------- /test/unit/test-subcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-subcmd.py -------------------------------------------------------------------------------- /test/unit/test-tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-tcp.py -------------------------------------------------------------------------------- /test/unit/test-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/test/unit/test-user.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/tox.ini -------------------------------------------------------------------------------- /trepan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/__init__.py -------------------------------------------------------------------------------- /trepan/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/__main__.py -------------------------------------------------------------------------------- /trepan/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/api.py -------------------------------------------------------------------------------- /trepan/bwcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwcli.py -------------------------------------------------------------------------------- /trepan/bwprocessor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/__init__.py -------------------------------------------------------------------------------- /trepan/bwprocessor/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/command/__init__.py -------------------------------------------------------------------------------- /trepan/bwprocessor/command/base_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/command/base_cmd.py -------------------------------------------------------------------------------- /trepan/bwprocessor/command/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/command/mock.py -------------------------------------------------------------------------------- /trepan/bwprocessor/command/quit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/command/quit.py -------------------------------------------------------------------------------- /trepan/bwprocessor/command/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/command/step.py -------------------------------------------------------------------------------- /trepan/bwprocessor/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/location.py -------------------------------------------------------------------------------- /trepan/bwprocessor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/main.py -------------------------------------------------------------------------------- /trepan/bwprocessor/msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/bwprocessor/msg.py -------------------------------------------------------------------------------- /trepan/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/client.py -------------------------------------------------------------------------------- /trepan/clifns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/clifns.py -------------------------------------------------------------------------------- /trepan/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/debugger.py -------------------------------------------------------------------------------- /trepan/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/exception.py -------------------------------------------------------------------------------- /trepan/inout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/__init__.py -------------------------------------------------------------------------------- /trepan/inout/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/base.py -------------------------------------------------------------------------------- /trepan/inout/fifoclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/fifoclient.py -------------------------------------------------------------------------------- /trepan/inout/fifoserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/fifoserver.py -------------------------------------------------------------------------------- /trepan/inout/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/input.py -------------------------------------------------------------------------------- /trepan/inout/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/output.py -------------------------------------------------------------------------------- /trepan/inout/scriptin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/scriptin.py -------------------------------------------------------------------------------- /trepan/inout/stringarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/stringarray.py -------------------------------------------------------------------------------- /trepan/inout/tcpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/tcpclient.py -------------------------------------------------------------------------------- /trepan/inout/tcpfns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/tcpfns.py -------------------------------------------------------------------------------- /trepan/inout/tcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/inout/tcpserver.py -------------------------------------------------------------------------------- /trepan/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interface.py -------------------------------------------------------------------------------- /trepan/interfaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/Makefile -------------------------------------------------------------------------------- /trepan/interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/__init__.py -------------------------------------------------------------------------------- /trepan/interfaces/bullwinkle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/bullwinkle.py -------------------------------------------------------------------------------- /trepan/interfaces/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/client.py -------------------------------------------------------------------------------- /trepan/interfaces/comcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/comcodes.py -------------------------------------------------------------------------------- /trepan/interfaces/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/script.py -------------------------------------------------------------------------------- /trepan/interfaces/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/server.py -------------------------------------------------------------------------------- /trepan/interfaces/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/interfaces/user.py -------------------------------------------------------------------------------- /trepan/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/__init__.py -------------------------------------------------------------------------------- /trepan/lib/breakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/breakpoint.py -------------------------------------------------------------------------------- /trepan/lib/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/bytecode.py -------------------------------------------------------------------------------- /trepan/lib/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/complete.py -------------------------------------------------------------------------------- /trepan/lib/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/core.py -------------------------------------------------------------------------------- /trepan/lib/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/default.py -------------------------------------------------------------------------------- /trepan/lib/deparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/deparse.py -------------------------------------------------------------------------------- /trepan/lib/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/disassemble.py -------------------------------------------------------------------------------- /trepan/lib/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/display.py -------------------------------------------------------------------------------- /trepan/lib/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/eval.py -------------------------------------------------------------------------------- /trepan/lib/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/file.py -------------------------------------------------------------------------------- /trepan/lib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/format.py -------------------------------------------------------------------------------- /trepan/lib/pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/pp.py -------------------------------------------------------------------------------- /trepan/lib/printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/printing.py -------------------------------------------------------------------------------- /trepan/lib/sighandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/sighandler.py -------------------------------------------------------------------------------- /trepan/lib/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/stack.py -------------------------------------------------------------------------------- /trepan/lib/thred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/lib/thred.py -------------------------------------------------------------------------------- /trepan/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/misc.py -------------------------------------------------------------------------------- /trepan/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/options.py -------------------------------------------------------------------------------- /trepan/post_mortem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/post_mortem.py -------------------------------------------------------------------------------- /trepan/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/__init__.py -------------------------------------------------------------------------------- /trepan/processor/cmd_addrlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/cmd_addrlist.py -------------------------------------------------------------------------------- /trepan/processor/cmdbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/cmdbreak.py -------------------------------------------------------------------------------- /trepan/processor/cmdfns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/cmdfns.py -------------------------------------------------------------------------------- /trepan/processor/cmdlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/cmdlist.py -------------------------------------------------------------------------------- /trepan/processor/cmdproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/cmdproc.py -------------------------------------------------------------------------------- /trepan/processor/command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/Makefile -------------------------------------------------------------------------------- /trepan/processor/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/__init__.py -------------------------------------------------------------------------------- /trepan/processor/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/alias.py -------------------------------------------------------------------------------- /trepan/processor/command/backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/backtrace.py -------------------------------------------------------------------------------- /trepan/processor/command/base_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/base_cmd.py -------------------------------------------------------------------------------- /trepan/processor/command/base_subcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/base_subcmd.py -------------------------------------------------------------------------------- /trepan/processor/command/base_submgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/base_submgr.py -------------------------------------------------------------------------------- /trepan/processor/command/bpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/bpy.py -------------------------------------------------------------------------------- /trepan/processor/command/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/break.py -------------------------------------------------------------------------------- /trepan/processor/command/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/cd.py -------------------------------------------------------------------------------- /trepan/processor/command/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/clear.py -------------------------------------------------------------------------------- /trepan/processor/command/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/condition.py -------------------------------------------------------------------------------- /trepan/processor/command/continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/continue.py -------------------------------------------------------------------------------- /trepan/processor/command/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/debug.py -------------------------------------------------------------------------------- /trepan/processor/command/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/delete.py -------------------------------------------------------------------------------- /trepan/processor/command/deparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/deparse.py -------------------------------------------------------------------------------- /trepan/processor/command/deval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/deval.py -------------------------------------------------------------------------------- /trepan/processor/command/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/disable.py -------------------------------------------------------------------------------- /trepan/processor/command/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/disassemble.py -------------------------------------------------------------------------------- /trepan/processor/command/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/display.py -------------------------------------------------------------------------------- /trepan/processor/command/down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/down.py -------------------------------------------------------------------------------- /trepan/processor/command/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/edit.py -------------------------------------------------------------------------------- /trepan/processor/command/enable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/enable.py -------------------------------------------------------------------------------- /trepan/processor/command/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/eval.py -------------------------------------------------------------------------------- /trepan/processor/command/examine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/examine.py -------------------------------------------------------------------------------- /trepan/processor/command/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/exit.py -------------------------------------------------------------------------------- /trepan/processor/command/finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/finish.py -------------------------------------------------------------------------------- /trepan/processor/command/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/frame.py -------------------------------------------------------------------------------- /trepan/processor/command/handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/handle.py -------------------------------------------------------------------------------- /trepan/processor/command/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help.py -------------------------------------------------------------------------------- /trepan/processor/command/help/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | -------------------------------------------------------------------------------- /trepan/processor/command/help/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/README -------------------------------------------------------------------------------- /trepan/processor/command/help/arange.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/arange.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/command.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/examples.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/filename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/filename.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/location.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/location.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/range.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/range.rst -------------------------------------------------------------------------------- /trepan/processor/command/help/suffixes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/help/suffixes.rst -------------------------------------------------------------------------------- /trepan/processor/command/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/Makefile -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/__init__.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/args.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/break.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/builtins.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/code.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/display.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/files.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/frame.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/globals.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/line.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/lines.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/locals.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/macro.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/offsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/offsets.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/pc.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/program.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/return.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/signals.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/source.py -------------------------------------------------------------------------------- /trepan/processor/command/info_subcmd/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/info_subcmd/threads.py -------------------------------------------------------------------------------- /trepan/processor/command/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/ipython.py -------------------------------------------------------------------------------- /trepan/processor/command/jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/jump.py -------------------------------------------------------------------------------- /trepan/processor/command/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/kill.py -------------------------------------------------------------------------------- /trepan/processor/command/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/list.py -------------------------------------------------------------------------------- /trepan/processor/command/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/macro.py -------------------------------------------------------------------------------- /trepan/processor/command/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/mock.py -------------------------------------------------------------------------------- /trepan/processor/command/next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/next.py -------------------------------------------------------------------------------- /trepan/processor/command/p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/p.py -------------------------------------------------------------------------------- /trepan/processor/command/pdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/pdef.py -------------------------------------------------------------------------------- /trepan/processor/command/pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/pp.py -------------------------------------------------------------------------------- /trepan/processor/command/pydocx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/pydocx.py -------------------------------------------------------------------------------- /trepan/processor/command/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/python.py -------------------------------------------------------------------------------- /trepan/processor/command/quit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/quit.py -------------------------------------------------------------------------------- /trepan/processor/command/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/restart.py -------------------------------------------------------------------------------- /trepan/processor/command/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/run.py -------------------------------------------------------------------------------- /trepan/processor/command/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/__demo_helper__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/__demo_helper__.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/__init__.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/asmfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/asmfmt.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/autoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/autoeval.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/autoipython.py.bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/autoipython.py.bad -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/autolist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/autolist.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/autopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/autopython.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/basename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/basename.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/cmdtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/cmdtrace.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/confirm.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/dbg_trepan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/dbg_trepan.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/different.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/different.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/events.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/highlight.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/listsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/listsize.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/maxstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/maxstring.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/patsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/patsub.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/skip.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/style.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/substitute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/substitute.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/tempdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/tempdir.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/trace.py -------------------------------------------------------------------------------- /trepan/processor/command/set_subcmd/width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/set_subcmd/width.py -------------------------------------------------------------------------------- /trepan/processor/command/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/__demo_helper__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/__demo_helper__.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/__init__.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/aliases.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/args.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/asmfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/asmfmt.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/autoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/autoeval.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/autolist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/autolist.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/autopython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/autopython.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/basename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/basename.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/cmdtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/cmdtrace.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/confirm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/confirm.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/dbg_trepan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/dbg_trepan.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/different.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/different.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/events.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/highlight.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/listsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/listsize.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/maxstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/maxstring.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/skip.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/style.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/tempdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/tempdir.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/trace.py -------------------------------------------------------------------------------- /trepan/processor/command/show_subcmd/width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/show_subcmd/width.py -------------------------------------------------------------------------------- /trepan/processor/command/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/skip.py -------------------------------------------------------------------------------- /trepan/processor/command/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/source.py -------------------------------------------------------------------------------- /trepan/processor/command/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/step.py -------------------------------------------------------------------------------- /trepan/processor/command/tbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/tbreak.py -------------------------------------------------------------------------------- /trepan/processor/command/unalias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/unalias.py -------------------------------------------------------------------------------- /trepan/processor/command/undisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/undisplay.py -------------------------------------------------------------------------------- /trepan/processor/command/up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/up.py -------------------------------------------------------------------------------- /trepan/processor/command/whatis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/command/whatis.py -------------------------------------------------------------------------------- /trepan/processor/complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/complete.py -------------------------------------------------------------------------------- /trepan/processor/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/frame.py -------------------------------------------------------------------------------- /trepan/processor/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/location.py -------------------------------------------------------------------------------- /trepan/processor/parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trepan/processor/parse/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/parse/parser.py -------------------------------------------------------------------------------- /trepan/processor/parse/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/parse/scanner.py -------------------------------------------------------------------------------- /trepan/processor/parse/semantics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/parse/semantics.py -------------------------------------------------------------------------------- /trepan/processor/parse/tok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/parse/tok.py -------------------------------------------------------------------------------- /trepan/processor/printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/printing.py -------------------------------------------------------------------------------- /trepan/processor/subcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/subcmd.py -------------------------------------------------------------------------------- /trepan/processor/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/processor/trace.py -------------------------------------------------------------------------------- /trepan/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/version.py -------------------------------------------------------------------------------- /trepan/vprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trepan-Debuggers/python2-trepan/HEAD/trepan/vprocessor.py --------------------------------------------------------------------------------