hgext3rd/__init__.py
author Durham Goode <durham@fb.com>
Sun, 10 Sep 2017 18:43:59 -0700
changeset 34097 f7d41b85bbf6
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
changegroup: replace changegroupsubset with makechangegroup As part of getting rid of all the permutations of changegroup creation, let's remove changegroupsubset and call makechangegroup instead. This moves the responsibility of creating the outgoing set to the caller, but that seems like a relatively reasonable unit of functionality for the caller to have to care about (i.e. what commits should be bundled). Differential Revision: https://phab.mercurial-scm.org/D665

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)