##// END OF EJS Templates
stream: rename all test hook point one number up...
stream: rename all test hook point one number up This leave room for a new hook point earlier to detect some race condition with caches.

File last commit:

r52756:f4733654 default
r53255:11484a19 default
Show More
__main__.py
15 lines | 252 B | text/x-python | PythonLexer
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()