mercurial/lock.py
changeset 1836 cd5c1db2132a
parent 1787 e431344e604c
child 1877 d314a89fa4f1
--- a/mercurial/lock.py	Sat Mar 04 19:01:45 2006 +0100
+++ b/mercurial/lock.py	Sun Mar 05 01:37:28 2006 -0800
@@ -5,8 +5,8 @@
 # This software may be used and distributed according to the terms
 # of the GNU General Public License, incorporated herein by reference.
 
-import errno, os, time
-import util
+from demandload import *
+demandload(globals(), 'errno os time util')
 
 class LockException(Exception):
     pass