Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/bundlerepo.py @ 8312:b87a50b7125c
separate import lines from mercurial and general python modules
author | Simon Heimberg <simohe@besonet.ch> |
---|---|
date | Tue, 28 Apr 2009 17:40:46 +0200 |
parents | 54a4b520bd7d |
children | 061eeb602354 |
comparison
equal
deleted
inserted
replaced
8311:e0eb03bfa5af | 8312:b87a50b7125c |
---|---|
11 were part of the actual repository. | 11 were part of the actual repository. |
12 """ | 12 """ |
13 | 13 |
14 from node import nullid | 14 from node import nullid |
15 from i18n import _ | 15 from i18n import _ |
16 import changegroup, util, os, struct, bz2, zlib, tempfile, shutil, mdiff | 16 import os, struct, bz2, zlib, tempfile, shutil |
17 import changegroup, util, mdiff | |
17 import localrepo, changelog, manifest, filelog, revlog, error | 18 import localrepo, changelog, manifest, filelog, revlog, error |
18 | 19 |
19 class bundlerevlog(revlog.revlog): | 20 class bundlerevlog(revlog.revlog): |
20 def __init__(self, opener, indexfile, bundlefile, | 21 def __init__(self, opener, indexfile, bundlefile, |
21 linkmapper=None): | 22 linkmapper=None): |