diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-23 21:05:46 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-23 21:05:46 (GMT) |
commit | 98b140c19620eae8e6e44d9edc7ab02aaeaa4031 (patch) | |
tree | 2021953fb225ddeab59694816cf8ce7aee142cb1 /Doc/library | |
parent | e6d4c5bab8d18e32bba6482da1b603b35f2fe254 (diff) | |
download | cpython-98b140c19620eae8e6e44d9edc7ab02aaeaa4031.zip cpython-98b140c19620eae8e6e44d9edc7ab02aaeaa4031.tar.gz cpython-98b140c19620eae8e6e44d9edc7ab02aaeaa4031.tar.bz2 |
Add entry for reprlib.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/reprlib.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index c794a8d..0e870da 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -5,6 +5,9 @@ :synopsis: Alternate repr() implementation with size limits. .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> +**Source code:** :source:`Lib/reprlib.py` + +-------------- The :mod:`reprlib` module provides a means for producing object representations with limits on the size of the resulting strings. This is used in the Python |