contrib/debugshell.py
author Martin Geisler <mg@aragost.com>
Thu, 24 Nov 2011 18:13:18 +0100
branchstable
changeset 15572 926bc23d0b6a
parent 11633 6b7b99867ada
child 19771 3bc675361206
permissions -rw-r--r--
largefiles: copy files into .hg/largefiles atomically Copying from the user cache into .hg/largefiles could fail halfway though with a partially written file.

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