summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-09-16 04:02:48 +0000
committerTim Peters <tim.peters@gmail.com>2000-09-16 04:02:48 +0000
commitc1d65c34cf7a7e1a9dbc42f58f37b15ce347a687 (patch)
tree18ed272218e7429cd627364cfce55fb7dd7845e9
parent78fc0b57dfd4bf8d3d3ab82e4ffe98cbd6075dac (diff)
downloadcpython-git-c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687.tar.gz
Repair senseless random.seed docstring (reported on c.l.py).
-rw-r--r--Lib/random.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 21cff89f0d..ef755a526e 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)