view rhodecode/lib/vcs/backends/hg/__init__.py @ 2700:f4b20558ae16 beta

allow cloning with hgsubversion (reimplementing pull request 46) sadly I get a exception from hg-git when doing the same for git+http URLs so I did not implement it for hg-git
author domruf <dominikruf@gmail.com>
date Wed, 01 Aug 2012 14:10:26 +0200
parents 324ac367a4da
children
line wrap: on
line source

# -*- coding: utf-8 -*-
"""
    vcs.backends.hg
    ~~~~~~~~~~~~~~~~

    Mercurial backend implementation.

    :created_on: Apr 8, 2010
    :copyright: (c) 2010-2011 by Marcin Kuzminski, Lukasz Balcerzak.
"""

from .repository import MercurialRepository
from .changeset import MercurialChangeset
from .inmemory import MercurialInMemoryChangeset
from .workdir import MercurialWorkdir


__all__ = [
    'MercurialRepository', 'MercurialChangeset',
    'MercurialInMemoryChangeset', 'MercurialWorkdir',
]