Kaydet (Commit) c1d65c34 authored tarafından Tim Peters's avatar Tim Peters

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

üst 78fc0b57
...@@ -47,7 +47,7 @@ def makeseed(a=None): ...@@ -47,7 +47,7 @@ def makeseed(a=None):
def seed(a=None): def seed(a=None):
"""Seed the default generator from any hashable value. """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) x, y, z = makeseed(a)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment