diff -r cfb6c10c08c2 -r f25c770c217b mercurial/debugcommands.py --- a/mercurial/debugcommands.py Mon Jan 25 11:34:23 2021 +0100 +++ b/mercurial/debugcommands.py Tue Jan 26 00:19:36 2021 +0100 @@ -3717,6 +3717,23 @@ ui.writenoi18n(b' revision %s\n' % v[1]) +@command(b'debugshell', optionalrepo=True) +def debugshell(ui, repo): + """run an interactive Python interpreter + + The local namespace is provided with a reference to the ui and + the repo instance (if available). + """ + import code + + imported_objects = { + 'ui': ui, + 'repo': repo, + } + + code.interact(local=imported_objects) + + @command( b'debugsuccessorssets', [(b'', b'closest', False, _(b'return closest successors sets only'))],