summaryrefslogtreecommitdiffstats
path: root/Doc/library/repr.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-11-06 07:10:31 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-11-06 07:10:31 (GMT)
commite0e082281ef9ec89d2d2cfdd18eddf4685068c59 (patch)
tree37cef4be4e3f2873026b2b674d15bd056cafa61a /Doc/library/repr.rst
parentd5cd1ff7da20543794496dc4a8867fafff0c87a2 (diff)
downloadcpython-e0e082281ef9ec89d2d2cfdd18eddf4685068c59.zip
cpython-e0e082281ef9ec89d2d2cfdd18eddf4685068c59.tar.gz
cpython-e0e082281ef9ec89d2d2cfdd18eddf4685068c59.tar.bz2
Add more links to Python sources where the code is short, readable and an informative adjunct to the docs.
Diffstat (limited to 'Doc/library/repr.rst')
-rw-r--r--Doc/library/repr.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/repr.rst b/Doc/library/repr.rst
index 78284f0..5bf5bf2 100644
--- a/Doc/library/repr.rst
+++ b/Doc/library/repr.rst
@@ -15,6 +15,11 @@ The :mod:`repr` module provides a means for producing object representations
with limits on the size of the resulting strings. This is used in the Python
debugger and may be useful in other contexts as well.
+.. seealso::
+
+ Latest version of the `repr module Python source code
+ <http://svn.python.org/view/python/branches/release27-maint/Lib/repr.py?view=markup>`_
+
This module provides a class, an instance, and a function: