[Python-3000-checkins] r63648 - python/branches/py3k/Doc/library/string.rst

benjamin.peterson python-3000-checkins at python.org
Sun May 25 21:45:18 CEST 2008


Author: benjamin.peterson
Date: Sun May 25 21:45:17 2008
New Revision: 63648

Log:
remove version note


Modified:
   python/branches/py3k/Doc/library/string.rst

Modified: python/branches/py3k/Doc/library/string.rst
==============================================================================
--- python/branches/py3k/Doc/library/string.rst	(original)
+++ python/branches/py3k/Doc/library/string.rst	Sun May 25 21:45:17 2008
@@ -81,12 +81,11 @@
 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
 


More information about the Python-3000-checkins mailing list