comparison mercurial/dispatch.py @ 5198:74650bcacc09

Remove demandimport.enable from dispatch.py
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Sat, 18 Aug 2007 14:25:55 -0300
parents da1658d63647
children
comparison
equal deleted inserted replaced
5197:55860a45bbf2 5198:74650bcacc09
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 # 4 #
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 demandimport; demandimport.enable()
9 from node import * 8 from node import *
10 from i18n import _ 9 from i18n import _
11 import os, sys, atexit, signal, pdb, traceback, socket, errno, shlex, time 10 import os, sys, atexit, signal, pdb, traceback, socket, errno, shlex, time
12 import util, commands, hg, lock, fancyopts, revlog, version, extensions, hook 11 import util, commands, hg, lock, fancyopts, revlog, version, extensions, hook
13 import cmdutil 12 import cmdutil