view mercurial/__main__.py @ 51153:976403c95ba3

rhg: refactor hg status, make the display code usable for non-dirstate status
author Arseniy Alekseyev <aalekseyev@janestreet.com>
date Mon, 16 Oct 2023 18:56:40 +0100
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()