comparison tests/test-issue4074.t @ 33721:24849d53697d

tests: clean up many print statements to be print functions instead Differential Revision: https://phab.mercurial-scm.org/D294
author Augie Fackler <augie@google.com>
date Thu, 15 Jun 2017 14:22:25 -0400
parents 75be14993fda
children 57c671cf7a69
comparison
equal deleted inserted replaced
33720:27fb986e54d0 33721:24849d53697d
6 > import random 6 > import random
7 > for x in xrange(100000): 7 > for x in xrange(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
11 > print hex(x) 11 > print(hex(x))
12 > EOF 12 > EOF
13 13
14 $ hg init a 14 $ hg init a
15 $ cd a 15 $ cd a
16 16