summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-31 09:22:56 (GMT)
committerGeorg Brandl <georg@python.org>2007-08-31 09:22:56 (GMT)
commit4b49131f2bac48850671ca2aad29dc81b3c228b9 (patch)
treea031e2ac9b6244f63f80da5f7fae28b05e7a704a /Doc/tutorial
parent20594ccf07bc9907854dc751175899e3a673f89e (diff)
downloadcpython-4b49131f2bac48850671ca2aad29dc81b3c228b9.zip
cpython-4b49131f2bac48850671ca2aad29dc81b3c228b9.tar.gz
cpython-4b49131f2bac48850671ca2aad29dc81b3c228b9.tar.bz2
Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/introduction.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst
index 29178e8..456307d 100644
--- a/Doc/tutorial/introduction.rst
+++ b/Doc/tutorial/introduction.rst
@@ -399,8 +399,8 @@ The built-in function :func:`len` returns the length of a string::
basic transformations and searching.
:ref:`string-formatting`
- The formatting operations invoked when strings are the
- left operand of the ``%`` operator are described in more detail here.
+ The formatting operations invoked by the :meth:`format` string method are
+ described in more detail here.
.. _tut-unicodestrings: