828
828
oldkind == 'directory' and newkind == 'directory' and
829
829
oldpath_decoded == newpath_decoded):
831
yield (fileid, (oldpath_decoded, newpath_decoded), (oldsha != newsha),
832
(oldversioned, newversioned),
833
(oldparent, newparent), (oldname, newname),
834
(oldkind, newkind), (oldexe, newexe))
831
yield _mod_tree.TreeChange(
832
fileid, (oldpath_decoded, newpath_decoded), (oldsha != newsha),
833
(oldversioned, newversioned),
834
(oldparent, newparent), (oldname, newname),
835
(oldkind, newkind), (oldexe, newexe))
837
838
class InterGitTrees(_mod_tree.InterTree):