comparison mercurial/dirstate.py @ 1094:221b5252864c

Adjust some imports
author mpm@selenic.com
date Sat, 27 Aug 2005 14:59:25 -0700
parents 142b5d5ec9cc
children 98988cc3723a
comparison
equal deleted inserted replaced
1093:1f1661c58283 1094:221b5252864c
5 5
6 This software may be used and distributed according to the terms 6 This software may be used and distributed according to the terms
7 of the GNU General Public License, incorporated herein by reference. 7 of the GNU General Public License, incorporated herein by reference.
8 """ 8 """
9 9
10 import sys, struct, os 10 import struct, os
11 from revlog import * 11 from node import *
12 from demandload import * 12 from demandload import *
13 demandload(globals(), "time bisect stat util") 13 demandload(globals(), "time bisect stat util")
14 14
15 class dirstate: 15 class dirstate:
16 def __init__(self, opener, ui, root): 16 def __init__(self, opener, ui, root):