##// END OF EJS Templates
patchbomb: use `get_unique_pull_path`...
patchbomb: use `get_unique_pull_path` The patchbomb code does not support multiple destinations yet. It would not be too hard to implemented since `hg outgoing` does. However that is a bit too much of a detour right now. In addition that kind of "select outgoing changesets for processing" code exist for various commands so the best would be to factor it out later. Let us use the dedicated API until this is solved. This comes with a small output change in the test that I find more accurate. So I kept it. Differential Revision: https://phab.mercurial-scm.org/D10405

File last commit:

r43347:687b865b default
r47700:a48f15f1 default
Show More
repoviewutil.py
24 lines | 796 B | text/x-python | PythonLexer
repoview: move subsettable in a dedicated module...
r42314 # repoviewutil.py - constaints data relevant to repoview.py and other module
#
# Copyright 2012 Pierre-Yves David <pierre-yves.david@ens-lyon.org>
# Logilab SA <contact@logilab.fr>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
### Nearest subset relation
# Nearest subset of filter X is a filter Y so that:
# * Y is included in X,
# * X - Y is as small as possible.
# This create and ordering used for branchmap purpose.
# the ordering may be partial
Augie Fackler
formatting: blacken the codebase...
r43346 subsettable = {
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 None: b'visible',
b'visible-hidden': b'visible',
b'visible': b'served',
b'served.hidden': b'served',
b'served': b'immutable',
b'immutable': b'base',
Augie Fackler
formatting: blacken the codebase...
r43346 }