Comments
Patch
@@ -1308,10 +1308,13 @@ class workingctx(committablectx):
"""override the parent hook with a dirstate query
We use this prestatus hook to populate the status with information from
the dirstate.
"""
+ # doesn't need to call super; if that changes, be aware that super
+ # calls self.manifest which would slow down the common case of calling
+ # status against a workingctx's parent
return self._dirstatestatus(match, listignored, listclean, listunknown)
def _poststatus(self, other, s, match, listignored, listclean, listunknown):
"""override the parent hook with a filter for suspect symlinks