##// 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 5 $ cat > s.py <<EOF
6 6 > import random
7 > for x in xrange(100000):
7 > for x in range(100000):
8 8 > print
9 9 > if random.randint(0, 100) >= 50:
10 10 > x += 1
General Comments 0
You need to be logged in to leave comments. Login now