hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 30 May 2021 18:08:52 +0200
changeset 47406 9b841267253c
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
util: add `nb_bytes` argument to `copyfile` to partially copy a file When set, this allow to copy only the first `nb_bytes` of a file. This will be useful for censor/strip operation with revlogv2. Differential Revision: https://phab.mercurial-scm.org/D10798

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)