summaryrefslogtreecommitdiffstats
path: root/Doc/library/random.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/random.rst')
-rw-r--r--Doc/library/random.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/random.rst b/Doc/library/random.rst
index 935d605..4306911 100644
--- a/Doc/library/random.rst
+++ b/Doc/library/random.rst
@@ -9,6 +9,11 @@
This module implements pseudo-random number generators for various
distributions.
+.. seealso::
+
+ Latest version of the `random module Python source code
+ <http://svn.python.org/view/python/branches/release27-maint/Lib/random.py?view=markup>`_
+
For integers, uniform selection from a range. For sequences, uniform selection
of a random element, a function to generate a random permutation of a list
in-place, and a function for random sampling without replacement.