# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1518348407 -19800 # Node ID 42542adb8944207074c6c5faac63a0f0ba741729 # Parent 233fb0b91a3533814e4df63e23aef440c61ce250 py3: replace file() with open() in test-convert-p4-filetypes.t file() is not present in Python 3. While I was here, I added b'' prefix to make sure we write things correctly in Python 3. Differential Revision: https://phab.mercurial-scm.org/D2112 diff -r 233fb0b91a35 -r 42542adb8944 tests/test-convert-p4-filetypes.t --- a/tests/test-convert-p4-filetypes.t Sun Feb 11 17:30:42 2018 +0530 +++ b/tests/test-convert-p4-filetypes.t Sun Feb 11 16:56:47 2018 +0530 @@ -52,7 +52,7 @@ > p4 add -t $T file_$T2 > ;; > binary*) - > $PYTHON -c "file('file_$T2', 'wb').write('this is $T')" + > $PYTHON -c "open('file_$T2', 'wb').write(b'this is $T')" > p4 add -t $T file_$T2 > ;; > *)