mercurial/dirstate.py
changeset 8226 8b2cd04a6e97
parent 8225 46293a0c7e9f
child 8261 0fe1f57ac2bd
equal deleted inserted replaced
8225:46293a0c7e9f 8226:8b2cd04a6e97
     1 """
     1 # dirstate.py - working directory tracking for mercurial
     2 dirstate.py - working directory tracking for mercurial
     2 #
     3 
     3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
     4 Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
     4 #
     5 
     5 # This software may be used and distributed according to the terms of the
     6 This software may be used and distributed according to the terms of the
     6 # GNU General Public License version 2, incorporated herein by reference.
     7 GNU General Public License version 2, incorporated herein by reference.
       
     8 """
       
     9 
     7 
    10 from node import nullid
     8 from node import nullid
    11 from i18n import _
     9 from i18n import _
    12 import struct, os, stat, util, errno, ignore
    10 import struct, os, stat, util, errno, ignore
    13 import cStringIO, osutil, sys, parsers
    11 import cStringIO, osutil, sys, parsers