projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78fc0b5
)
Repair senseless random.seed docstring (reported on c.l.py).
author
Tim Peters
<tim.peters@gmail.com>
Sat, 16 Sep 2000 04:02:48 +0000
(
04:02
+0000)
committer
Tim Peters
<tim.peters@gmail.com>
Sat, 16 Sep 2000 04:02:48 +0000
(
04:02
+0000)
Lib/random.py
patch
|
blob
|
history
diff --git
a/Lib/random.py
b/Lib/random.py
index 21cff89f0d0c9779a80badfe35680069dfdf90c2..ef755a526e93a7535bf545e7803dc1a455142c02 100644
(file)
--- 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)