[PATCH 3 of 4] debugshell: add function to embed ipython

Kevin Bullock kbullock+mercurial at ringworld.org
Sat Sep 21 23:10:52 CDT 2013


On 20 Sep 2013, at 3:28 PM, Sean Farley wrote:

> # HG changeset patch
> # User Sean Farley <sean.michael.farley at gmail.com>
> # Date 1373821356 18000
> #      Sun Jul 14 12:02:36 2013 -0500
> # Node ID 4c1a591f6674905b8b2ecd09ae2a85de0ba7e84c
> # Parent  aa9ff65add03b8e535c115c67d5c12c64231b019
> debugshell: add function to embed ipython
> 
> diff --git a/contrib/debugshell.py b/contrib/debugshell.py
> --- a/contrib/debugshell.py
> +++ b/contrib/debugshell.py
> @@ -12,10 +12,18 @@
>         'mf': repo.manifest,
>     }
> 
>     code.interact(msg, local=objects)
> 
> +def ipdb(ui, repo, msg, **opts):
> +    import IPython
> +
> +    cl = repo.changelog
> +    mf = repo.manifest

Do ipdb users not also get 'mercurial' and 'repo', or do these come in automagically because of the way we're sucking in IPython?

pacem in terris / мир / शान्ति / ‎‫سَلاَم‬ / 平和
Kevin R. Bullock

> +
> +    IPython.embed()
> +
> def debugshell(ui, repo, **opts):
>     bannermsg = "loaded repo : %s\n" \
>                 "using source: %s" % (repo.root,
>                                       mercurial.__path__[0])
> 
> _______________________________________________
> Mercurial-devel mailing list
> Mercurial-devel at selenic.com
> http://selenic.com/mailman/listinfo/mercurial-devel

pacem in terris / мир / शान्ति / ‎‫سَلاَم‬ / 平和
Kevin R. Bullock



More information about the Mercurial-devel mailing list