Provide links to Python source in a handful of
cases where the source is a generally helpful
adjunct to the docs.
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.