Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.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 | 48a382c23226 |
children | beae42f3d93b |
comparison
equal
deleted
inserted
replaced
8311:e0eb03bfa5af | 8312:b87a50b7125c |
---|---|
6 # GNU General Public License version 2, incorporated herein by reference. | 6 # GNU General Public License version 2, incorporated herein by reference. |
7 | 7 |
8 from node import bin, hex, nullid, nullrev, short | 8 from node import bin, hex, nullid, nullrev, short |
9 from i18n import _ | 9 from i18n import _ |
10 import repo, changegroup | 10 import repo, changegroup |
11 import changelog, dirstate, filelog, manifest, context, weakref | 11 import changelog, dirstate, filelog, manifest, context |
12 import lock, transaction, stat, errno, ui, store, encoding | 12 import lock, transaction, ui, store, encoding |
13 import os, time, util, extensions, hook, inspect, error | 13 import util, extensions, hook, error |
14 import match as match_ | 14 import match as match_ |
15 import merge as merge_ | 15 import merge as merge_ |
16 | |
17 from lock import release | 16 from lock import release |
17 import weakref, stat, errno, os, time, inspect | |
18 propertycache = util.propertycache | 18 propertycache = util.propertycache |
19 | 19 |
20 class localrepository(repo.repository): | 20 class localrepository(repo.repository): |
21 capabilities = set(('lookup', 'changegroupsubset')) | 21 capabilities = set(('lookup', 'changegroupsubset')) |
22 supported = set('revlogv1 store fncache'.split()) | 22 supported = set('revlogv1 store fncache'.split()) |