diff --git a/Lib/random.py b/Lib/random.py index 21cff89f0d0..ef755a526e9 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -47,7 +47,7 @@ def makeseed(a=None): def seed(a=None): """Seed the default generator from any hashable value. - None or no argument returns (0, 0, 0) to seed from current time. + None or no argument seeds from current time. """ x, y, z = makeseed(a)