summaryrefslogtreecommitdiffstats
path: root/Doc/library/pprint.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/pprint.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/pprint.rst')
-rw-r--r--Doc/library/pprint.rst14
1 files changed, 1 insertions, 13 deletions
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst
index 3630176..3703c1c 100644
--- a/Doc/library/pprint.rst
+++ b/Doc/library/pprint.rst
@@ -20,10 +20,7 @@ breaks them onto multiple lines if they don't fit within the allowed width.
Construct :class:`PrettyPrinter` objects explicitly if you need to adjust the
width constraint.
-.. versionchanged:: 2.5
- Dictionaries are sorted by key before the display is computed; before 2.5, a
- dictionary was sorted only if its display required more than one line, although
- that wasn't documented.
+Dictionaries are sorted by key before the display is computed.
The :mod:`pprint` module defines one class:
@@ -84,9 +81,6 @@ The :class:`PrettyPrinter` class supports several derivative functions:
and *depth* will be passed to the :class:`PrettyPrinter` constructor as
formatting parameters.
- .. versionchanged:: 2.4
- The parameters *indent*, *width* and *depth* were added.
-
.. function:: pprint(object[, stream[, indent[, width[, depth]]]])
@@ -107,9 +101,6 @@ The :class:`PrettyPrinter` class supports several derivative functions:
'/usr/local/lib/python1.5/sharedmodules',
'/usr/local/lib/python1.5/tkinter']
- .. versionchanged:: 2.4
- The parameters *indent*, *width* and *depth* were added.
-
.. function:: isreadable(object)
@@ -208,6 +199,3 @@ are converted to strings. The default implementation uses the internals of the
is no requested limit. This argument should be passed unmodified to recursive
calls. The fourth argument, *level*, gives the current level; recursive calls
should be passed a value less than that of the current call.
-
- .. versionadded:: 2.3
-