From: Tim Peters Date: Sat, 16 Sep 2000 04:02:48 +0000 (+0000) Subject: Repair senseless random.seed docstring (reported on c.l.py). X-Git-Tag: v2.0b2~268 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1d65c34cf7a7e1a9dbc42f58f37b15ce347a687;p=thirdparty%2FPython%2Fcpython.git Repair senseless random.seed docstring (reported on c.l.py). --- diff --git a/Lib/random.py b/Lib/random.py index 21cff89f0d0c..ef755a526e93 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)