equal
deleted
inserted
replaced
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) |