Lines Matching full:randrange
3327 can now use randrange() for ranges with a length >= 2**53. Formerly,
3328 randrange would return only even numbers for ranges that large (see
3330 issue a warning when randrange() is called with a range that large.
5505 - random.randrange(-sys.maxint-1, sys.maxint) no longer raises
11588 - In whrandom.py, added new method and function randrange(), same as
11591 range. Also, randint(a, b) is now redefined as randrange(a, b+1),