# HG changeset patch # User Yuya Nishihara # Date 2018-10-13 12:11:12 # Node ID 7759c26a3a0bfe4ddd2d986ec7789b70dcbe8160 # Parent c9e8c93e241c424be5fe90c59b93b832b4cc2e65 py3: do I/O in bytes in test-help.t diff --git a/tests/test-help.t b/tests/test-help.t --- a/tests/test-help.t +++ b/tests/test-help.t @@ -1799,13 +1799,13 @@ such str.lower(). $ "$PYTHON" < def escape(s): - > return ''.join('\u%x' % ord(uc) for uc in s.decode('cp932')) + > return b''.join(b'\\u%x' % ord(uc) for uc in s.decode('cp932')) > # translation of "record" in ja_JP.cp932 - > upper = "\x8bL\x98^" + > upper = b"\x8bL\x98^" > # str.lower()-ed section name should be treated as different one - > lower = "\x8bl\x98^" - > with open('ambiguous.py', 'w') as fp: - > fp.write("""# ambiguous section names in ja_JP.cp932 + > lower = b"\x8bl\x98^" + > with open('ambiguous.py', 'wb') as fp: + > fp.write(b"""# ambiguous section names in ja_JP.cp932 > u'''summary of extension > > %s @@ -1832,8 +1832,9 @@ such str.lower(). > EOF $ "$PYTHON" < upper = "\x8bL\x98^" - > print("hg --encoding cp932 help -e ambiguous.%s" % upper) + > from mercurial import pycompat + > upper = b"\x8bL\x98^" + > pycompat.stdout.write(b"hg --encoding cp932 help -e ambiguous.%s\n" % upper) > EOF \x8bL\x98^ (esc) ---- @@ -1842,8 +1843,9 @@ such str.lower(). $ "$PYTHON" < lower = "\x8bl\x98^" - > print("hg --encoding cp932 help -e ambiguous.%s" % lower) + > from mercurial import pycompat + > lower = b"\x8bl\x98^" + > pycompat.stdout.write(b"hg --encoding cp932 help -e ambiguous.%s\n" % lower) > EOF \x8bl\x98^ (esc) ----