diff options
Diffstat (limited to 'tests/cpydiff/modules_random_randint.py')
-rw-r--r-- | tests/cpydiff/modules_random_randint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpydiff/modules_random_randint.py b/tests/cpydiff/modules_random_randint.py index b05908a157..90607400cd 100644 --- a/tests/cpydiff/modules_random_randint.py +++ b/tests/cpydiff/modules_random_randint.py @@ -8,5 +8,5 @@ workaround: If you need integers larger than native wordsize use the random modu import random -x = random.randint(2 ** 128 - 1, 2 ** 128) +x = random.randint(2**128 - 1, 2**128) print("x={}".format(x)) |