view mercurial/__main__.py @ 51192:65c9032e2e5a

rust-index: synchronize append method We now append to the Rust index just as we do to the C index. Future steps will bring the two indexes further together until we can rip the C index entirely when running Rust code.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 27 Jun 2023 18:24:54 +0200
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()