Mercurial > hg
changeset 36504:b075f45456a5
py3: fix test-command-template.t to write files in binary mode
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 01 Mar 2018 08:55:39 -0500 |
parents | 8b662717c53f |
children | db33c5bc781f |
files | tests/test-command-template.t |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-command-template.t Thu Mar 01 08:45:34 2018 -0500 +++ b/tests/test-command-template.t Thu Mar 01 08:55:39 2018 -0500 @@ -2217,9 +2217,9 @@ >>> from __future__ import absolute_import >>> import datetime - >>> fp = open('a', 'w') + >>> fp = open('a', 'wb') >>> n = datetime.datetime.now() + datetime.timedelta(366 * 7) - >>> fp.write('%d-%d-%d 00:00' % (n.year, n.month, n.day)) + >>> fp.write(b'%d-%d-%d 00:00' % (n.year, n.month, n.day)) >>> fp.close() $ hg add a $ hg commit -m future -d "`cat a`" @@ -4573,8 +4573,8 @@ $ hg init nonascii $ cd nonascii $ $PYTHON <<EOF - > open('latin1', 'w').write('\xe9') - > open('utf-8', 'w').write('\xc3\xa9') + > open('latin1', 'wb').write(b'\xe9') + > open('utf-8', 'wb').write(b'\xc3\xa9') > EOF $ HGENCODING=utf-8 hg branch -q `cat utf-8` $ HGENCODING=utf-8 hg ci -qAm "non-ascii branch: `cat utf-8`" utf-8