mercurial/dirstate.py
changeset 47536 8e4b9fe31334
parent 47535 6025353c9c55
child 47537 0e5800c88eb4
equal deleted inserted replaced
47535:6025353c9c55 47536:8e4b9fe31334
  1305             # opcode has fast paths when the value to be unpacked is a tuple or
  1305             # opcode has fast paths when the value to be unpacked is a tuple or
  1306             # a list, but falls back to creating a full-fledged iterator in
  1306             # a list, but falls back to creating a full-fledged iterator in
  1307             # general. That is much slower than simply accessing and storing the
  1307             # general. That is much slower than simply accessing and storing the
  1308             # tuple members one by one.
  1308             # tuple members one by one.
  1309             t = dget(fn)
  1309             t = dget(fn)
  1310             mode = t[1]
  1310             mode = t.mode
  1311             size = t[2]
  1311             size = t[2]
  1312             time = t[3]
  1312             time = t[3]
  1313 
  1313 
  1314             if not st and t.tracked:
  1314             if not st and t.tracked:
  1315                 dadd(fn)
  1315                 dadd(fn)