diff -r 594f4d2b0ce9 -r 56ba14d4bc02 mercurial/context.py --- a/mercurial/context.py Wed Aug 14 16:24:59 2013 -0500 +++ b/mercurial/context.py Wed Aug 14 16:25:17 2013 -0500 @@ -1012,6 +1012,9 @@ phase = max(phase, p.phase()) return phase + def hidden(self): + return False + class workingctx(commitablectx): """A workingctx object makes access to data related to the current working directory convenient. @@ -1038,9 +1041,6 @@ p = p[:-1] return [changectx(self._repo, x) for x in p] - def hidden(self): - return False - def children(self): return []