summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-09-16 04:02:48 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-09-16 04:02:48 (GMT)
commitc1d65c34cf7a7e1a9dbc42f58f37b15ce347a687 (patch)
tree18ed272218e7429cd627364cfce55fb7dd7845e9 /Lib/random.py
parent78fc0b57dfd4bf8d3d3ab82e4ffe98cbd6075dac (diff)
downloadcpython-c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687.zip
cpython-c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687.tar.gz
cpython-c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687.tar.bz2
Repair senseless random.seed docstring (reported on c.l.py).
Diffstat (limited to 'Lib/random.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 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)