diff options
Diffstat (limited to 'Lib')
-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 a19059c..9ec41e1 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -20,7 +20,7 @@ # value. See whrandom.py for more info. import whrandom -from whrandom import random, uniform, randint, choice # Also for export! +from whrandom import random, uniform, randint, choice, randrange # For export! from math import log, exp, pi, e, sqrt, acos, cos, sin # Interfaces to replace remaining needs for importing whrandom |