contrib: add debugshell extension

This commit is contained in:
Vishakh H 2010-07-20 23:29:49 +05:30
parent 48c3dffac9
commit dc91b670e1

21
contrib/debugshell.py Normal file
View File

@ -0,0 +1,21 @@
# 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, [])
}