Mercurial > public > mercurial-scm > hg-stable
diff mercurial/util.py @ 2470:fe1689273f84
use demandload more.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Tue, 20 Jun 2006 23:58:21 -0700 |
parents | b77a2ef61b81 |
children | 6904e1ef8ad1 |
line wrap: on
line diff
--- a/mercurial/util.py Mon Jun 19 20:37:36 2006 +0200 +++ b/mercurial/util.py Tue Jun 20 23:58:21 2006 -0700 @@ -10,11 +10,10 @@ platform-specific details from the core. """ -import os, errno from i18n import gettext as _ from demandload import * demandload(globals(), "cStringIO errno popen2 re shutil sys tempfile") -demandload(globals(), "threading time") +demandload(globals(), "os threading time") class SignalInterrupt(Exception): """Exception raised on SIGTERM and SIGHUP."""