comparison mercurial/dirstate.py @ 8312:b87a50b7125c

separate import lines from mercurial and general python modules
author Simon Heimberg <simohe@besonet.ch>
date Tue, 28 Apr 2009 17:40:46 +0200
parents 8417d82d3969
children 9fe16b1a1786
comparison
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