[PATCH 26 of 35 V2] context: move sub from changectx
Sean Farley
sean.michael.farley at gmail.com
Wed Aug 7 23:51:40 UTC 2013
# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1375746036 18000
# Mon Aug 05 18:40:36 2013 -0500
# Node ID c4fd433fcfc88fe67f272c8e96fe163f37bdd30d
# Parent 6756246e140db18282287eda58ef4f10bae403b1
context: move sub from changectx
diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -117,10 +117,13 @@
try:
return self._fileinfo(path)[1]
except error.LookupError:
return ''
+ def sub(self, path):
+ return subrepo.subrepo(self, path)
+
class changectx(context):
"""A changecontext object makes access to data related to a particular
changeset convenient. It represents a read-only context already presnt in
the repo."""
def __init__(self, repo, changeid=''):
@@ -378,13 +381,10 @@
# specified pattern is a directory
continue
if match.bad(fn, _('no such file in rev %s') % self) and match(fn):
yield fn
- def sub(self, path):
- return subrepo.subrepo(self, path)
-
def match(self, pats=[], include=None, exclude=None, default='glob'):
r = self._repo
return matchmod.match(r.root, r.getcwd(), pats,
include, exclude, default,
auditor=r.auditor, ctx=self)
More information about the Mercurial-devel
mailing list