summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-25 19:45:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-25 19:45:17 (GMT)
commit50923f9619cd63c6c58438f4b9863d24875eb910 (patch)
tree8bb8c37ede82a0a0f3657436fb545523cf9d7bb5 /Doc
parentb533e26dfae98f00facb50a6d3d6c200771d051f (diff)
downloadcpython-50923f9619cd63c6c58438f4b9863d24875eb910.zip
cpython-50923f9619cd63c6c58438f4b9863d24875eb910.tar.gz
cpython-50923f9619cd63c6c58438f4b9863d24875eb910.tar.bz2
remove version note
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/string.rst11
1 files changed, 5 insertions, 6 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index 461f466..a5c3a81 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -81,12 +81,11 @@ The constants defined in this module are:
String Formatting
-----------------
-Starting in Python 3.0, the built-in string class provides the ability to do
-complex variable substitutions and value formatting via the :func:`format`
-method described in :pep:`3101`. The :class:`Formatter` class in the
-:mod:`string` module allows you to create and customize your own string
-formatting behaviors using the same implementation as the built-in
-:meth:`format` method.
+The built-in string class provides the ability to do complex variable
+substitutions and value formatting via the :func:`format` method described in
+:pep:`3101`. The :class:`Formatter` class in the :mod:`string` module allows
+you to create and customize your own string formatting behaviors using the same
+implementation as the built-in :meth:`format` method.
.. class:: Formatter