From: Benjamin Peterson Date: Sun, 25 May 2008 20:05:52 +0000 (+0000) Subject: rename the section about new formatting 'new-string-formatting' X-Git-Tag: v2.6b1~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c15205e93957b3bef18f317a480f8b99213d4870;p=python rename the section about new formatting 'new-string-formatting' --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 09f9182980..fa953f2b8a 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -103,16 +103,16 @@ The constants defined in this module are: :func:`strip` and :func:`split` is undefined. -.. _string-formatting: +.. _new-string-formatting: String Formatting ----------------- Starting in Python 2.6, the built-in str and unicode classes provide 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 +to do complex variable substitutions and value formatting via the +:meth:`str.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