mercurial/revlog.py
changeset 4497 22ebd6ee5672
parent 4325 aa26759c6fb3
parent 4483 769cc8ef5b72
child 4635 63b9d2deed48
equal deleted inserted replaced
4496:b79cdb7f0597 4497:22ebd6ee5672
   345             else:
   345             else:
   346                 oldst = self.indexstat
   346                 oldst = self.indexstat
   347                 if (oldst and st.st_dev == oldst.st_dev
   347                 if (oldst and st.st_dev == oldst.st_dev
   348                     and st.st_ino == oldst.st_ino
   348                     and st.st_ino == oldst.st_ino
   349                     and st.st_mtime == oldst.st_mtime
   349                     and st.st_mtime == oldst.st_mtime
   350                     and st.st_ctime == oldst.st_ctime):
   350                     and st.st_ctime == oldst.st_ctime
       
   351                     and st.st_size == oldst.st_size):
   351                     return
   352                     return
   352                 self.indexstat = st
   353                 self.indexstat = st
   353             if len(i) > 0:
   354             if len(i) > 0:
   354                 v = struct.unpack(versionformat, i)[0]
   355                 v = struct.unpack(versionformat, i)[0]
   355         flags = v & ~0xFFFF
   356         flags = v & ~0xFFFF