tests/test-hg-parseurl.py.out
author Yuya Nishihara <yuya@tcha.org>
Sat, 17 Feb 2018 17:24:29 +0900
changeset 36302 4088e568a411
parent 13897 375872fdadba
permissions -rw-r--r--
extensions: reject any unicode strings in tables before loading This allows us to test hg on Python 3 without disabling third-party extensions which could pollute cmdtable for example.

http://example.com/no/anchor, branches: (None, [])
http://example.com/an/anchor, branches: ('foo', [])
http://example.com/no/anchor/branches, branches: (None, ['foo'])
http://example.com/an/anchor/branches, branches: ('bar', ['foo'])
http://example.com/an/anchor/branches-None, branches: ('foo', [])
http://example.com/, branches: (None, [])
http://example.com/, branches: (None, [])
http://example.com/, branches: ('foo', [])