diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-19 00:14:03 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-19 00:14:03 (GMT) |
commit | 29a0b57e4ed19532dc78dbf08b957c85bfbafbd6 (patch) | |
tree | b7fae5150cb2e44679947e109e68eb2a05076f7d /Doc/library/string.rst | |
parent | d478a46d563413d51a730678e4c72a54d2881123 (diff) | |
download | cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.zip cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.gz cpython-29a0b57e4ed19532dc78dbf08b957c85bfbafbd6.tar.bz2 |
Backport source links from 3.x.
Existing links have been updated to use the new reST role. In some
files, I have also made cosmetic changes to the header.
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r-- | Doc/library/string.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index d785b7b..9ee81b5 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -7,6 +7,10 @@ .. index:: module: re +**Source code:** :source:`Lib/string.py` + +-------------- + 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 @@ -17,12 +21,6 @@ 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. -.. seealso:: - - Latest version of the `string module Python source code - <http://svn.python.org/view/python/branches/release27-maint/Lib/string.py?view=markup>`_ - - String constants ---------------- |