Commit #1068: new docs for PEP 3101. Also document the old string formatting as "old", and begin documenting str/unicode unification.

This commit is contained in:
Georg Brandl 2007-08-31 09:22:56 +00:00
parent 20594ccf07
commit 4b49131f2b
9 changed files with 513 additions and 389 deletions

View file

@ -8,12 +8,11 @@ String Services
The modules described in this chapter provide a wide range of string
manipulation operations.
In addition, Python's built-in string classes support the sequence type
methods described in the :ref:`typesseq` section, and also the
string-specific methods described in the :ref:`string-methods` section.
To output formatted strings use template strings or the ``%`` operator
described in the :ref:`string-formatting` section. Also, see the
:mod:`re` module for string functions based on regular expressions.
In addition, Python's built-in string classes support the sequence type methods
described in the :ref:`typesseq` section, and also the string-specific methods
described in the :ref:`string-methods` section. To output formatted strings,
see the :ref:`string-formatting` section. Also, see the :mod:`re` module for
string functions based on regular expressions.
.. toctree::