##// END OF EJS Templates
py3: replace file() with open() in test-clone.t...
Pulkit Goyal -
r36028:c02200b1 default
parent child Browse files
Show More
@@ -10,7 +10,7 b' Prepare repo a:'
10
10
11 Create a non-inlined filelog:
11 Create a non-inlined filelog:
12
12
13 $ $PYTHON -c 'file("data1", "wb").write("".join("%s\n" % x for x in range(10000)))'
13 $ $PYTHON -c 'open("data1", "wb").write(b"".join(b"%d\n" % x for x in range(10000)))'
14 $ for j in 0 1 2 3 4 5 6 7 8 9; do
14 $ for j in 0 1 2 3 4 5 6 7 8 9; do
15 > cat data1 >> b
15 > cat data1 >> b
16 > hg commit -m test
16 > hg commit -m test
General Comments 0
You need to be logged in to leave comments. Login now