hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 02 Jan 2025 14:50:06 +0100
changeset 52592 87ceb51d124c
parent 51859 f4733654f144
permissions -rw-r--r--
run-tests: drop jython support I don't think we heard anything about jython support for the past 15 years, so let's drop special support for it in run-tests.py it is most probably broken at that point.

# name space package to host third party extensions

from __future__ import annotations

import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)