Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/random.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ def paretovariate(self, alpha):
# Jain, pg. 495

u = 1.0 - self.random()
return 1.0 / u ** (1.0 / alpha)
return u ** (-1.0 / alpha)

def weibullvariate(self, alpha, beta):
"""Weibull distribution.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Make an algebraic simplification to random.paretovariate(). It now is
slightly less subject to round-off error and is slightly faster. Inputs that
used to cause ZeroDivisionError now cause an OverflowError instead.