mercurial/__main__.py
author Arun Kulshreshtha <akulshreshtha@janestreet.com>
Thu, 15 Feb 2024 11:39:18 -0500
changeset 51391 a96ed440450e
parent 50697 e7ef11b75fdc
child 51864 1c5810ce737e
permissions -rw-r--r--
hg-core: implement timestamp line parsing

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()