[Python-checkins] r86053 - python/branches/release27-maint/Doc/library/random.rst

raymond.hettinger python-checkins at python.org
Sun Oct 31 19:15:33 CET 2010


Author: raymond.hettinger
Date: Sun Oct 31 19:15:33 2010
New Revision: 86053

Log:
Issue 10025:  Let docs for random.seed() describe what it does, not how it does it.
The latter was slightly inaccurate. 



Modified:
   python/branches/release27-maint/Doc/library/random.rst

Modified: python/branches/release27-maint/Doc/library/random.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/random.rst	(original)
+++ python/branches/release27-maint/Doc/library/random.rst	Sun Oct 31 19:15:33 2010
@@ -73,10 +73,6 @@
    .. versionchanged:: 2.4
       formerly, operating system resources were not used.
 
-   If *x* is not ``None`` or an int or long, ``hash(x)`` is used instead. If *x* is
-   an int or long, *x* is used directly.
-
-
 .. function:: getstate()
 
    Return an object capturing the current internal state of the generator.  This


More information about the Python-checkins mailing list