mercurial/__main__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 30 Aug 2023 12:24:12 +0200
changeset 50911 93cc085653fb
parent 50697 e7ef11b75fdc
child 51902 1c5810ce737e
permissions -rw-r--r--
run-tests: detect HGWITHRUSTEXT value Without this, some manual check in tests/test-dirstate.t could get confused by the lack of `rust` in module policy and break the test.

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()