diff options
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: |