Files @ 287b5f1cb40a
Branch filter:

Location: kallithea/kallithea/lib/vcs/utils/hgcompat.py

Mads Kiilerich
py3: only use safe_str for string conversion - not for arbitrary __str__ invocation

Usually, we actually just want unicode string, and it is better to just unicode().
"""
Mercurial libs compatibility
"""

# Mercurial 5.0 550a172a603b renamed memfilectx argument `copied` to `copysource`
import inspect

import mercurial
from mercurial import archival, config, demandimport, discovery, httppeer, localrepo
from mercurial import merge as hg_merge
from mercurial import obsutil, patch, scmutil, sshpeer, ui, unionrepo
from mercurial.commands import clone, nullid, pull
from mercurial.context import memctx, memfilectx
from mercurial.discovery import findcommonoutgoing
from mercurial.encoding import tolocal
from mercurial.error import Abort, RepoError, RepoLookupError
from mercurial.hg import peer
from mercurial.hgweb import hgweb_mod
from mercurial.hgweb.common import get_contact
from mercurial.match import exact as match_exact
from mercurial.match import match
from mercurial.mdiff import diffopts
from mercurial.node import hex, nullrev
from mercurial.scmutil import revrange
from mercurial.tags import tag
from mercurial.url import httpbasicauthhandler, httpdigestauthhandler
from mercurial.util import url as hg_url


# patch demandimport, due to bug in mercurial when it always triggers demandimport.enable()
demandimport.enable = lambda *args, **kwargs: 1


# workaround for 3.3 94ac64bcf6fe and not calling largefiles reposetup correctly
localrepo.localrepository._lfstatuswriters = [lambda *msg, **opts: None]
# 3.5 7699d3212994 added the invariant that repo.lfstatus must exist before hitting overridearchive
localrepo.localrepository.lfstatus = False

if inspect.getargspec(memfilectx.__init__).args[7] != 'copysource':
    assert inspect.getargspec(memfilectx.__init__).args[7] == 'copied', inspect.getargspec(memfilectx.__init__).args
    __org_memfilectx_ = memfilectx
    memfilectx = lambda repo, changectx, path, data, islink=False, isexec=False, copysource=None: \
        __org_memfilectx_(repo, changectx, path, data, islink=islink, isexec=isexec, copied=copysource)

# Mercurial 5.0 dropped exact argument for match in 635a12c53ea6, and 0531dff73d0b made the exact function stable with a single parameter
if inspect.getargspec(match_exact).args[0] != 'files':
    match_exact = lambda path: match(None, '', [path], exact=True)