# HG changeset patch # User Pulkit Goyal # Date 1539394143 -10800 # Node ID 6d52c2275c302d220935243312f51d57954bcf55 # Parent c7ffc53fbd19ffdc9efdc790e88070b40d194672 py3: add b'' prefixes to tests/test-keyword.t This test is now pretty close to passing on Python 3. # skip-blame because just b'' prefixes. Differential Revision: https://phab.mercurial-scm.org/D5032 diff -r c7ffc53fbd19 -r 6d52c2275c30 tests/test-keyword.t --- a/tests/test-keyword.t Sat Oct 13 04:24:19 2018 +0300 +++ b/tests/test-keyword.t Sat Oct 13 04:29:03 2018 +0300 @@ -214,10 +214,10 @@ hg status of kw-ignored binary file starting with '\1\n' - >>> open("i", "wb").write("\1\nfoo") and None + >>> open("i", "wb").write(b"\1\nfoo") and None $ hg -q commit -Am metasep i $ hg status - >>> open("i", "wb").write("\1\nbar") and None + >>> open("i", "wb").write(b"\1\nbar") and None $ hg status M i $ hg -q commit -m "modify metasep" i @@ -378,8 +378,8 @@ record chunk >>> lines = open('a', 'rb').readlines() - >>> lines.insert(1, 'foo\n') - >>> lines.append('bar\n') + >>> lines.insert(1, b'foo\n') + >>> lines.append(b'bar\n') >>> open('a', 'wb').writelines(lines) $ hg record -d '10 1' -m rectest a< y @@ -942,7 +942,7 @@ Imported patch should not be rejected >>> import re - >>> text = re.sub(r'(Id.*)', r'\1 rejecttest', open('a').read()) + >>> text = re.sub(br'(Id.*)', br'\1 rejecttest', open('a', 'rb').read()) >>> open('a', 'wb').write(text) and None $ hg --debug commit -m'rejects?' -d '3 0' -u 'User Name ' committing files: