hgcompat.py
12 lines
| 457 B
| text/x-python
|
PythonLexer
r2007 | """Mercurial libs compatibility | |||
""" | ||||
from mercurial import archival, merge as hg_merge, patch, ui | ||||
from mercurial.commands import clone, nullid, pull | ||||
from mercurial.context import memctx, memfilectx | ||||
from mercurial.error import RepoError, RepoLookupError, Abort | ||||
from mercurial.hgweb.common import get_contact | ||||
from mercurial.localrepo import localrepository | ||||
from mercurial.match import match | ||||
from mercurial.mdiff import diffopts | ||||
from mercurial.node import hex | ||||