mercurial/__main__.py
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Tue, 09 Apr 2024 11:00:52 +0100
changeset 51601 ea3343104f07
parent 50697 e7ef11b75fdc
permissions -rw-r--r--
largefiles: track if a matcher was tampered with This is used to make sure rust fast path is not taken for the modified matchers.

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()