From 3357561476d3b5570ca9e4936baee444e504c39f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 31 Jul 1998 13:40:05 +0000 Subject: [PATCH] Added randrange to list of exported functions. --- Lib/random.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/random.py b/Lib/random.py index a19059cbe8d2..9ec41e17d65a 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 -- 2.47.3