Mercurial > public > mercurial-scm > hg-stable
diff mercurial/manifest.py @ 2470:fe1689273f84
use demandload more.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Tue, 20 Jun 2006 23:58:21 -0700 |
parents | dbdce3b99988 |
children | 0b50a580be36 |
line wrap: on
line diff
--- a/mercurial/manifest.py Mon Jun 19 20:37:36 2006 +0200 +++ b/mercurial/manifest.py Tue Jun 20 23:58:21 2006 -0700 @@ -5,11 +5,10 @@ # This software may be used and distributed according to the terms # of the GNU General Public License, incorporated herein by reference. -import struct from revlog import * from i18n import gettext as _ from demandload import * -demandload(globals(), "bisect array") +demandload(globals(), "array bisect struct") class manifest(revlog): def __init__(self, opener, defversion=REVLOGV0):