Submitter | phabricator |
---|---|
Date | Nov. 10, 2017, 11:03 p.m. |
Message ID | <53dfa27454a4bb400e93b8ddbdc4fab7@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/25469/ |
State | Not Applicable |
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()