hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 21 Mar 2022 20:06:51 +0100
changeset 49015 3f6ddb1c193b
parent 48875 6000f5b25c9b
child 51863 f4733654f144
permissions -rw-r--r--
subsetmaker: rework the antichain generation to be usable Before this, antichain computation can run for 10s of hours without completion in sight. We use a more direct approach in the computation to keep the computation in complexity in check. With good result. We can now have a full antichain computation on mozilla-try in about one minute. Which is usable. Differential Revision: https://phab.mercurial-scm.org/D12396

# name space package to host third party extensions
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)