##// END OF EJS Templates
#590 Add GET flag that controls the way the diff are generated, for pull requests we want to use non-bundle based diffs,...
#590 Add GET flag that controls the way the diff are generated, for pull requests we want to use non-bundle based diffs, That are far better for doing code reviews. The /compare url still uses bundle compare for full comparision including the incoming changesets. - Fixed tests

File last commit:

r2007:324ac367 beta
r2892:5fba3778 beta
Show More
__init__.py
21 lines | 504 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 .repository import MercurialRepository
from .changeset import MercurialChangeset
from .inmemory import MercurialInMemoryChangeset
from .workdir import MercurialWorkdir
__all__ = [
'MercurialRepository', 'MercurialChangeset',
'MercurialInMemoryChangeset', 'MercurialWorkdir',
]