Mercurial > hg
view mercurial/__main__.py @ 51982:aa7f4a45d8fa
clonebundles: allow manifest to specify sha256 digest of bundles
author | Joerg Sonnenberger <joerg@bec.de> |
---|---|
date | Thu, 27 Jun 2024 03:32:52 +0200 |
parents | 1c5810ce737e |
children |
line wrap: on
line source
from __future__ import annotations def run(): from . import demandimport with demandimport.tracing.log('hg script'): demandimport.enable() from . import dispatch dispatch.run() if __name__ == '__main__': run()