diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-07-21 15:54:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-07-21 15:54:48 (GMT) |
commit | de5b02430b7b7fb8ec417bd05d9f7c4980587802 (patch) | |
tree | 947b83da8053a5fccef4ec705944259be520e437 /Doc/library/string.rst | |
parent | 1c524754f67e4ba9f5e0f19e7d860d5ab2372aab (diff) | |
download | cpython-de5b02430b7b7fb8ec417bd05d9f7c4980587802.zip cpython-de5b02430b7b7fb8ec417bd05d9f7c4980587802.tar.gz cpython-de5b02430b7b7fb8ec417bd05d9f7c4980587802.tar.bz2 |
Remove outdated mention of deprecated functions in the string module - they have been removed in 3.x.
Diffstat (limited to 'Doc/library/string.rst')
-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 6d1e0b3..38c872d 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 |