contrib/debugshell.py
author Matt Mackall <mpm@selenic.com>
Thu, 03 Nov 2011 15:18:10 -0500
changeset 15416 3b7c4f96885c
parent 11633 6b7b99867ada
child 19771 3bc675361206
permissions -rw-r--r--
run-tests: minor cleanups

# debugshell extension
"""a python shell with repo, changelog & manifest objects"""

import mercurial
import code

def debugshell(ui, repo, **opts):
    objects = {
        'mercurial': mercurial,
        'repo': repo,
        'cl': repo.changelog,
        'mf': repo.manifest,
    }
    bannermsg = "loaded repo : %s\n" \
                "using source: %s" % (repo.root,
                                      mercurial.__path__[0])
    code.interact(bannermsg, local=objects)

cmdtable = {
    "debugshell|dbsh": (debugshell, [])
}