hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 07 Dec 2023 00:34:08 +0100
branchstable
changeset 51165 66417f55ea33
parent 48875 6000f5b25c9b
child 51863 f4733654f144
permissions -rw-r--r--
revlog: avoid exposing delayed index entry too widely in non-inline revlog Before this change, the index entry would be seen as "appended" to the data file. It did not hurt too much as there are never accessed for reading, but this was odd. So lets stop doing so.

# name space package to host third party extensions
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)