view tests/testlib/random-revs.py @ 6857:36d7bc8d2e8b stable

tests: drop the warning about missing README{,.txt} in sdist I don't think there's any modern packaging solution that is still unaware that our README.rst is a valid README file. According to my 5-minute annotate dive, both setuptools and distutils have added .rst as a valid extension for README files at least 7 years ago.
author Anton Shestakov <av6@dwimlabs.net>
date Mon, 09 Sep 2024 17:55:17 +0400
parents 11b8f7003713
children
line wrap: on
line source

#!/usr/bin/env python
"""
This simple script outputs a sequence of numbers separated by newlines. The
amount of numbers and their approximate values can be controlled by two command
line arguments.

Usage: $0 COUNT MAXADD. COUNT will determine the amount of numbers printed, and
MAXADD will limit the value that will be added to each of those numbers.
"""

from __future__ import print_function

import random
import sys

def main():
    count = int(sys.argv[1])
    maxadd = int(sys.argv[2])
    for x in range(count):
        print(x + random.randint(0, maxadd))

if __name__ == '__main__':
    main()