[Updated] D8796: config: remove now-unused `abs` argument from `include` callback
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sun Aug 2 16:07:56 UTC 2020
Closed by commit rHG668af67bfd18: config: remove now-unused `abs` argument from `include` callback (authored by martinvonz).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D8796?vs=22135&id=22179
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D8796/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D8796
AFFECTED FILES
mercurial/config.py
mercurial/subrepoutil.py
mercurial/templater.py
CHANGE DETAILS
diff --git a/mercurial/templater.py b/mercurial/templater.py
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -825,7 +825,7 @@
base = os.path.dirname(mapfile)
conf = config.config()
- def include(rel, abs, remap, sections):
+ def include(rel, remap, sections):
templatedirs = [base, templatedir()]
for dir in templatedirs:
if dir is None:
diff --git a/mercurial/subrepoutil.py b/mercurial/subrepoutil.py
--- a/mercurial/subrepoutil.py
+++ b/mercurial/subrepoutil.py
@@ -36,7 +36,7 @@
p = config.config()
repo = ctx.repo()
- def read(f, abs, sections=None, remap=None):
+ def read(f, sections=None, remap=None):
if f in ctx:
try:
data = ctx[f].data()
@@ -56,7 +56,7 @@
)
if b'.hgsub' in ctx:
- read(b'.hgsub', b'.hgsub')
+ read(b'.hgsub')
for path, src in ui.configitems(b'subpaths'):
p.set(b'subpaths', path, src, ui.configsource(b'subpaths', path))
diff --git a/mercurial/config.py b/mercurial/config.py
--- a/mercurial/config.py
+++ b/mercurial/config.py
@@ -161,16 +161,13 @@
if m and include:
expanded = util.expandpath(m.group(1))
- inc = os.path.normpath(
- os.path.join(os.path.dirname(src), expanded)
- )
try:
- include(expanded, inc, remap=remap, sections=sections)
+ include(expanded, remap=remap, sections=sections)
except IOError as inst:
if inst.errno != errno.ENOENT:
raise error.ParseError(
_(b"cannot include %s (%s)")
- % (inc, encoding.strtolocal(inst.strerror)),
+ % (expanded, encoding.strtolocal(inst.strerror)),
b"%s:%d" % (src, line),
)
continue
@@ -215,7 +212,7 @@
dir = os.path.dirname(path)
- def include(rel, abs, remap, sections):
+ def include(rel, remap, sections):
abs = os.path.normpath(os.path.join(dir, rel))
self.read(abs, remap=remap, sections=sections)
To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20200802/aea9b6b2/attachment-0002.html>
More information about the Mercurial-patches
mailing list