contrib/debugshell.py
author Kevin Bullock <kbullock@ringworld.org>
Thu, 14 Feb 2013 13:56:02 -0600
changeset 18692 af4387d8d1c7
parent 11633 6b7b99867ada
child 19771 3bc675361206
permissions -rw-r--r--
extensions: remove erroneous comment We actually -do- use the 'ui' argument to print a debug statement.

# 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, [])
}