mercurial/__main__.py
author Arseniy Alekseyev <aalekseyev@janestreet.com>
Fri, 12 Apr 2024 14:09:55 +0100
branchstable
changeset 51566 529a655874fb
parent 50697 e7ef11b75fdc
permissions -rw-r--r--
matchers: fix the bug in rust PatternMatcher that made it cut off early This brings the rust output in line with the Python output.

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()