equal
deleted
inserted
replaced
836 for d, (node, readsubtree, docopy) in self._lazydirs.items(): |
836 for d, (node, readsubtree, docopy) in self._lazydirs.items(): |
837 if docopy: |
837 if docopy: |
838 selfdirs[d] = readsubtree(subpath(d), node).copy() |
838 selfdirs[d] = readsubtree(subpath(d), node).copy() |
839 else: |
839 else: |
840 selfdirs[d] = readsubtree(subpath(d), node) |
840 selfdirs[d] = readsubtree(subpath(d), node) |
841 self._lazydirs = {} |
841 self._lazydirs.clear() |
842 |
842 |
843 def _loadlazy(self, d): |
843 def _loadlazy(self, d): |
844 v = self._lazydirs.get(d) |
844 v = self._lazydirs.get(d) |
845 if v: |
845 if v: |
846 node, readsubtree, docopy = v |
846 node, readsubtree, docopy = v |