diff options
author | Raymond Hettinger <python@rcn.com> | 2007-01-19 18:07:18 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2007-01-19 18:07:18 +0000 |
commit | 1b0ce8527112b997194a4e2fb9a1a850c6d73ee8 (patch) | |
tree | 2d86a2a3c3984b9cc462a0905294cc63cd48bf06 /Lib/random.py | |
parent | 0682a52e311fae31f99b766d842a188f0647cb9f (diff) | |
download | cpython-git-1b0ce8527112b997194a4e2fb9a1a850c6d73ee8.tar.gz |
SF# 1635892: Fix docs for betavariate's input parameters .
Diffstat (limited to 'Lib/random.py')
-rw-r--r-- | Lib/random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py index b80f1a1c3f..ed87ddd64e 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -569,7 +569,7 @@ class Random(_random.Random): def betavariate(self, alpha, beta): """Beta distribution. - Conditions on the parameters are alpha > -1 and beta} > -1. + Conditions on the parameters are alpha > 0 and beta > 0. Returned values range between 0 and 1. """ |