Repair senseless random.seed docstring (reported on c.l.py).
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 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)