mercurial/dirstate.py
changeset 8312 b87a50b7125c
parent 8310 8417d82d3969
child 8521 9fe16b1a1786
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
     5 # This software may be used and distributed according to the terms of the
     5 # This software may be used and distributed according to the terms of the
     6 # GNU General Public License version 2, incorporated herein by reference.
     6 # GNU General Public License version 2, incorporated herein by reference.
     7 
     7 
     8 from node import nullid
     8 from node import nullid
     9 from i18n import _
     9 from i18n import _
    10 import struct, os, stat, util, errno, ignore
    10 import util, ignore, osutil, parsers
    11 import cStringIO, osutil, sys, parsers
    11 import struct, os, stat, errno
       
    12 import cStringIO, sys
    12 
    13 
    13 _unknown = ('?', 0, 0, 0)
    14 _unknown = ('?', 0, 0, 0)
    14 _format = ">cllll"
    15 _format = ">cllll"
    15 propertycache = util.propertycache
    16 propertycache = util.propertycache
    16 
    17