Victor Pires added the comment:
Sorry, you are right
--
resolution: -> not a bug
stage: -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.or
Change by Victor Pires :
Removed file: https://bugs.python.org/file47689/Bug.html
___
Python tracker
<https://bugs.python.org/issue34109>
___
___
Python-bugs-list mailin
New submission from Victor Pires :
A function to return a number from 1 to 5 (inclusive) sometimes returns -1 when
called thousands of times.
from random import randint
import sys
def rand5():
"""Returns a random integer from 1 to 5 (inclusive)"""
r5 =