[docs] May be a doc mispelling

Pierpaolo Anselmetti pierpa63 at gmail.com
Mon Feb 11 17:30:26 CET 2013


Hi,
I'm quite new to Python, so I am not sure, but I think there is a trivial
mispelling in:

http://docs.python.org/3.3/library/random.html#module-random

where

random.randint(*a*,
*b*)<http://docs.python.org/3.3/library/random.html#random.randint>

Return a random integer *N* such that a <= N <= b. Alias for randrange(a,
b+1)

should be


random.randint(*a*,
*b*)<http://docs.python.org/3.3/library/random.html#random.randint>

Return a random integer *N* such that a <= N <= b. Alias for randrange(a, *b,
1)*

Hope this helps, otherwise forgive me for this mail.


Pierpaolo
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/docs/attachments/20130211/720ff72d/attachment-0001.html>


More information about the docs mailing list