Mercurial > hg-stable
changeset 40221:6d52c2275c30
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
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Sat, 13 Oct 2018 04:29:03 +0300 |
parents | c7ffc53fbd19 |
children | af5e2b23040a |
files | tests/test-keyword.t |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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<<EOF > 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 <user@example.com>' committing files: