hgext3rd/__init__.py
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
Tue, 12 Feb 2019 17:10:31 -0500
changeset 41694 5d383d9636d0
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
walkchangerevs: obey allfiles parameter when taking the slow path When walkchangerevs sees that there's a pattern, it hits the slow path. The slow path in turn reverts to the old dumb grep behaviour of only looking at files changed at each revision. Therefore, a command such as hg grep -l --all-files '.*' 'glob:**' would show you all the nonempty files touched by the current revision. This modifies that behaviour to look at the manifest at each revision instead of the changed files in case that --all-files was requested.

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