comparison mercurial/bundlerepo.py @ 8227:0a9542703300

turn some comments back into module docstrings
author Martin Geisler <mg@lazybytes.net>
date Sun, 26 Apr 2009 01:24:49 +0200
parents 8b2cd04a6e97
children 54a4b520bd7d
comparison
equal deleted inserted replaced
8226:8b2cd04a6e97 8227:0a9542703300
1 # bundlerepo.py - repository class for viewing uncompressed bundles 1 # bundlerepo.py - repository class for viewing uncompressed bundles
2 #
3 # This provides a read-only repository interface to bundles as if
4 # they were part of the actual repository.
5 # 2 #
6 # Copyright 2006, 2007 Benoit Boissinot <bboissin@gmail.com> 3 # Copyright 2006, 2007 Benoit Boissinot <bboissin@gmail.com>
7 # 4 #
8 # This software may be used and distributed according to the terms of the 5 # This software may be used and distributed according to the terms of the
9 # GNU General Public License version 2, incorporated herein by reference. 6 # GNU General Public License version 2, incorporated herein by reference.
7
8 """Repository class for viewing uncompressed bundles.
9
10 This provides a read-only repository interface to bundles as if they
11 were part of the actual repository.
12 """
10 13
11 from node import nullid 14 from node import nullid
12 from i18n import _ 15 from i18n import _
13 import changegroup, util, os, struct, bz2, zlib, tempfile, shutil, mdiff 16 import changegroup, util, os, struct, bz2, zlib, tempfile, shutil, mdiff
14 import localrepo, changelog, manifest, filelog, revlog, error 17 import localrepo, changelog, manifest, filelog, revlog, error