diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-06 07:10:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-06 07:10:31 (GMT) |
commit | e0e082281ef9ec89d2d2cfdd18eddf4685068c59 (patch) | |
tree | 37cef4be4e3f2873026b2b674d15bd056cafa61a /Doc/library/repr.rst | |
parent | d5cd1ff7da20543794496dc4a8867fafff0c87a2 (diff) | |
download | cpython-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.rst | 5 |
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: |