Submitter | phabricator |
---|---|
Date | Nov. 8, 2017, 5:31 p.m. |
Message ID | <differential-rev-PHID-DREV-kvupwxuiw5o3hmihpsp7-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/25421/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -1226,6 +1226,11 @@ self._map.clear() self.copymap.clear() self.setparents(nullid, nullid) + util.clearcachedproperty(self, "dirs") + util.clearcachedproperty(self, "filefoldmap") + util.clearcachedproperty(self, "dirfoldmap") + util.clearcachedproperty(self, "nonnormalset") + util.clearcachedproperty(self, "otherparentset") def iteritems(self): return self._map.iteritems()