##// END OF EJS Templates
py3: use range instead of xrange in tests/test-issue4074.t...
Pulkit Goyal -
r36305:57c671cf default
parent child Browse files
Show More
@@ -4,7 +4,7 b' A script to generate nasty diff worst-ca'
4
4
5 $ cat > s.py <<EOF
5 $ cat > s.py <<EOF
6 > import random
6 > import random
7 > for x in xrange(100000):
7 > for x in range(100000):
8 > print
8 > print
9 > if random.randint(0, 100) >= 50:
9 > if random.randint(0, 100) >= 50:
10 > x += 1
10 > x += 1
General Comments 0
You need to be logged in to leave comments. Login now