view tests/svnurlof.py @ 42084:42537dfc7a7c

match: add doctest examples in match() Make the docstring raw, as it now includes escape characters.
author Denis Laxalde <denis@laxalde.org>
date Mon, 08 Apr 2019 09:34:50 +0200
parents eb6700e6c5ea
children 2372284d9457
line wrap: on
line source

from __future__ import absolute_import, print_function
import sys

from mercurial import (
    pycompat,
    util,
)

def main(argv):
    enc = util.urlreq.quote(pycompat.sysbytes(argv[1]))
    if pycompat.iswindows:
        fmt = 'file:///%s'
    else:
        fmt = 'file://%s'
    print(fmt % pycompat.sysstr(enc))

if __name__ == '__main__':
    main(sys.argv)