view mercurial/__main__.py @ 51609:fc317bd5b637 stable

fold-or-prune-me: update proposal This does the same things but with a narrower wrapping.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 02 May 2024 08:46:58 +0200
parents e7ef11b75fdc
children
line wrap: on
line source

def run():
    from . import demandimport

    with demandimport.tracing.log('hg script'):
        demandimport.enable()
        from . import dispatch

        dispatch.run()


if __name__ == '__main__':
    run()