# HG changeset patch # User Pulkit Goyal <7895pulkit@gmail.com> # Date 1517989759 -19800 # Node ID 1dbd8a62b58167430df299ad9954e5d8cb9846fe # Parent 01b4d88ccb241444d37a4918f7df640a32312f38 py3: use open() instead of file() file() is not present in Python 3. Differential Revision: https://phab.mercurial-scm.org/D2073 diff -r 01b4d88ccb24 -r 1dbd8a62b581 tests/test-mq-eol.t --- a/tests/test-mq-eol.t Wed Feb 07 13:17:19 2018 +0530 +++ b/tests/test-mq-eol.t Wed Feb 07 13:19:19 2018 +0530 @@ -10,7 +10,7 @@ > EOF $ cat > makepatch.py < f = file('eol.diff', 'wb') + > f = open('eol.diff', 'wb') > w = f.write > w('test message\n') > w('diff --git a/a b/a\n') @@ -30,7 +30,7 @@ $ cat > cateol.py < import sys - > for line in file(sys.argv[1], 'rb'): + > for line in open(sys.argv[1], 'rb'): > line = line.replace('\r', '') > line = line.replace('\n', '') > print(line) @@ -44,7 +44,7 @@ Test different --eol values - $ $PYTHON -c 'file("a", "wb").write("a\nb\nc\nd\ne")' + $ $PYTHON -c 'open("a", "wb").write("a\nb\nc\nd\ne")' $ hg ci -Am adda adding .hgignore adding a @@ -152,15 +152,15 @@ $ hg init testeol $ cd testeol - $ $PYTHON -c "file('a', 'wb').write('1\r\n2\r\n3\r\n4')" + $ $PYTHON -c "open('a', 'wb').write('1\r\n2\r\n3\r\n4')" $ hg ci -Am adda adding a - $ $PYTHON -c "file('a', 'wb').write('1\r\n2\r\n33\r\n4')" + $ $PYTHON -c "open('a', 'wb').write('1\r\n2\r\n33\r\n4')" $ hg qnew patch1 $ hg qpop popping patch1 patch queue now empty - $ $PYTHON -c "file('a', 'wb').write('1\r\n22\r\n33\r\n4')" + $ $PYTHON -c "open('a', 'wb').write('1\r\n22\r\n33\r\n4')" $ hg ci -m changea $ hg --config 'patch.eol=LF' qpush