comparison mercurial/lock.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 46293a0c7e9f
children cfdcb7a465af
comparison
equal deleted inserted replaced
8311:e0eb03bfa5af 8312:b87a50b7125c
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com>
4 # 4 #
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 import errno, os, socket, time, util, error 8 import util, error
9 import errno, os, socket, time
9 import warnings 10 import warnings
10 11
11 class lock(object): 12 class lock(object):
12 # lock is symlink on platforms that support it, file on others. 13 # lock is symlink on platforms that support it, file on others.
13 14