##// END OF EJS Templates
make lock module use demandload.
Vadim Gelfer -
r1836:cd5c1db2 default
parent child Browse files
Show More
@@ -5,8 +5,8 b''
5 # This software may be used and distributed according to the terms
5 # This software may be used and distributed according to the terms
6 # of the GNU General Public License, incorporated herein by reference.
6 # of the GNU General Public License, incorporated herein by reference.
7
7
8 import errno, os, time
8 from demandload import *
9 import util
9 demandload(globals(), 'errno os time util')
10
10
11 class LockException(Exception):
11 class LockException(Exception):
12 pass
12 pass
General Comments 0
You need to be logged in to leave comments. Login now