##// END OF EJS Templates
vcs: drop the superfluous and leaky hgcompat "layer"...
vcs: drop the superfluous and leaky hgcompat "layer" Explicit is better. And gives less pyflakes noise.

File last commit:

r7977:f713a375 default
r7977:f713a375 default
Show More
__init__.py
25 lines | 571 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
"""
vcs.backends.hg
~~~~~~~~~~~~~~~
Mercurial backend implementation.
:created_on: Apr 8, 2010
:copyright: (c) 2010-2011 by Marcin Kuzminski, Lukasz Balcerzak.
"""
from kallithea.lib.vcs.utils import hgcompat
from .changeset import MercurialChangeset
from .inmemory import MercurialInMemoryChangeset
from .repository import MercurialRepository
from .workdir import MercurialWorkdir
__all__ = [
'MercurialRepository', 'MercurialChangeset',
'MercurialInMemoryChangeset', 'MercurialWorkdir',
]
hgcompat.monkey_do()