summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/random.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 21cff89..ef755a5 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)