diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-07-21 15:55:40 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-07-21 15:55:40 (GMT) |
commit | 86c590e64a734d8c13382fa92c34594d90d4fc5a (patch) | |
tree | 8fcb620c601bdd538cd80f3f7f3bcf106a48a237 /Doc | |
parent | 76e57947a10466654f09b696886eae5ff245e550 (diff) | |
download | cpython-86c590e64a734d8c13382fa92c34594d90d4fc5a.zip cpython-86c590e64a734d8c13382fa92c34594d90d4fc5a.tar.gz cpython-86c590e64a734d8c13382fa92c34594d90d4fc5a.tar.bz2 |
Merged revisions 83025 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r83025 | antoine.pitrou | 2010-07-21 17:54:48 +0200 (mer., 21 juil. 2010) | 3 lines
Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/string.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 6e0fb45..46907aa 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -7,13 +7,13 @@ .. index:: module: re -The :mod:`string` module contains a number of useful constants and classes, as -well as some deprecated legacy functions that are also available as methods on -strings. 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. +The :mod:`string` module contains a number of useful constants and classes +for string formatting. 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. String constants |