# HG changeset patch # User Vadim Gelfer # Date 1141551448 28800 # Node ID cd5c1db2132a2c9a3b28cba6fb909dab4619c321 # Parent bdfb524d728af0427d930795a8ae852a3e4e8f0e make lock module use demandload. diff -r bdfb524d728a -r cd5c1db2132a mercurial/lock.py --- 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