diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-08 18:58:33 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-08 18:58:33 (GMT) |
commit | 8ff1099684ae24dfc253d14e46d65a6c2023d537 (patch) | |
tree | e096ec79f6536cbed00492674ab1403706ac70cd /Lib/random.py | |
parent | 183cd1fae37f6f71eebc6bba626774bce8e867d2 (diff) | |
download | cpython-8ff1099684ae24dfc253d14e46d65a6c2023d537.zip cpython-8ff1099684ae24dfc253d14e46d65a6c2023d537.tar.gz cpython-8ff1099684ae24dfc253d14e46d65a6c2023d537.tar.bz2 |
One more conversion from pow() to **.
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 c57dc2b..e4073dd 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -599,7 +599,7 @@ class Random(_random.Random): # Jain, pg. 495 u = 1.0 - self.random() - return 1.0 / pow(u, 1.0/alpha) + return 1.0 / u ** (1.0/alpha) ## -------------------- Weibull -------------------- |