tests/test-issue4074.t
changeset 33747 24849d53697d
parent 32958 75be14993fda
child 36324 57c671cf7a69
equal deleted inserted replaced
33746:27fb986e54d0 33747: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