diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-16 04:02:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-16 04:02:48 (GMT) |
commit | c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687 (patch) | |
tree | 18ed272218e7429cd627364cfce55fb7dd7845e9 /Lib/random.py | |
parent | 78fc0b57dfd4bf8d3d3ab82e4ffe98cbd6075dac (diff) | |
download | cpython-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.py | 2 |
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) |