Mercurial > public > mercurial-scm > hg
comparison mercurial/appendfile.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | d7f866789d7e |
children | b11a2fb59cf5 |
comparison
equal
deleted
inserted
replaced
3876:1e0b94cfba0e | 3877:abaee83ce0a6 |
---|---|
3 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> | 3 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.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 from demandload import * | 8 import cStringIO, changelog, errno, manifest, os, tempfile, util |
9 demandload(globals(), "cStringIO changelog errno manifest os tempfile util") | |
10 | 9 |
11 # writes to metadata files are ordered. reads: changelog, manifest, | 10 # writes to metadata files are ordered. reads: changelog, manifest, |
12 # normal files. writes: normal files, manifest, changelog. | 11 # normal files. writes: normal files, manifest, changelog. |
13 | 12 |
14 # manifest contains pointers to offsets in normal files. changelog | 13 # manifest contains pointers to offsets in normal files. changelog |