Repair senseless random.seed docstring (reported on c.l.py).

This commit is contained in:
Tim Peters 2000-09-16 04:02:48 +00:00
parent 78fc0b57df
commit c1d65c34cf

View File

@ -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)