hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 23 Sep 2024 23:52:45 +0200
changeset 51903 9f7cf869e9f4
parent 51863 f4733654f144
permissions -rw-r--r--
rev-branch-cache: add a way to force rewrite of the cache This seems useful to be able to do this, for example during strip. This align with the intended expressed in the `test-branches.t` test. This will help use being more confident about future changes in the series.

# name space package to host third party extensions

from __future__ import annotations

import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)