--- a/tests/test-import.t Sun Feb 11 17:07:09 2018 +0530
+++ b/tests/test-import.t Sun Feb 11 17:08:40 2018 +0530
@@ -56,7 +56,7 @@
$ cat > dummypatch.py <<EOF
> from __future__ import print_function
> print('patching file a')
- > file('a', 'wb').write('line2\n')
+ > open('a', 'wb').write(b'line2\n')
> EOF
$ hg clone -r0 a b
adding changesets
@@ -291,7 +291,7 @@
> msg.set_payload('email commit message\n' + patch)
> msg['Subject'] = 'email patch'
> msg['From'] = 'email patcher'
- > file(sys.argv[2], 'wb').write(msg.as_string())
+ > open(sys.argv[2], 'wb').write(msg.as_string())
> EOF
@@ -389,7 +389,7 @@
> msg.set_payload('email patch\n\nnext line\n---\n' + patch)
> msg['Subject'] = '[PATCH] email patch'
> msg['From'] = 'email patcher'
- > file(sys.argv[2], 'wb').write(msg.as_string())
+ > open(sys.argv[2], 'wb').write(msg.as_string())
> EOF
@@ -829,7 +829,7 @@
$ hg init binaryremoval
$ cd binaryremoval
$ echo a > a
- $ $PYTHON -c "file('b', 'wb').write('a\x00b')"
+ $ $PYTHON -c "open('b', 'wb').write(b'a\x00b')"
$ hg ci -Am addall
adding a
adding b