diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
commit | 10480940373492652bc285fca3fa74751c271645 (patch) | |
tree | bb1bfed3416120cc371eb884960cf73aad9a957e /Doc/library/pprint.rst | |
parent | a4815caa7ccf21aa994d0e0eec66873072f0e352 (diff) | |
download | cpython-10480940373492652bc285fca3fa74751c271645.zip cpython-10480940373492652bc285fca3fa74751c271645.tar.gz cpython-10480940373492652bc285fca3fa74751c271645.tar.bz2 |
Move source links to consistent location and remove wordy, big yellow boxes.
Diffstat (limited to 'Doc/library/pprint.rst')
-rw-r--r-- | Doc/library/pprint.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index 82648a1..58b6702 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -6,6 +6,7 @@ .. moduleauthor:: Fred L. Drake, Jr. <fdrake@acm.org> .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> +**Source code:** :source:`Lib/pprint.py` The :mod:`pprint` module provides a capability to "pretty-print" arbitrary Python data structures in a form which can be used as input to the interpreter. @@ -21,11 +22,6 @@ width constraint. Dictionaries are sorted by key before the display is computed. -.. seealso:: - - Latest version of the :source:`pprint module Python source code - <Lib/pprint.py>` - The :mod:`pprint` module defines one class: .. First the implementation class: |