diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-16 19:13:50 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-16 19:13:50 (GMT) |
commit | 6e6cb8e0e491477614bae33c29f6e00d0d48c20b (patch) | |
tree | 0cb13cc6d94af48c5a4b78b360c75fcf6f93d406 /Doc/library/textwrap.rst | |
parent | dbe7519da9d0a99d68aaa773cde2793900dad44f (diff) | |
download | cpython-6e6cb8e0e491477614bae33c29f6e00d0d48c20b.zip cpython-6e6cb8e0e491477614bae33c29f6e00d0d48c20b.tar.gz cpython-6e6cb8e0e491477614bae33c29f6e00d0d48c20b.tar.bz2 |
Provide links to Python source where the code is short, readable and
informative adjunct to the docs. Forward-port of Raymond's r86225 and
r86245 using the new source reST role added in #10334.
Diffstat (limited to 'Doc/library/textwrap.rst')
-rw-r--r-- | Doc/library/textwrap.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/textwrap.rst b/Doc/library/textwrap.rst index f66416f..f881701 100644 --- a/Doc/library/textwrap.rst +++ b/Doc/library/textwrap.rst @@ -13,6 +13,10 @@ and a utility function :func:`dedent`. If you're just wrapping or filling one or two text strings, the convenience functions should be good enough; otherwise, you should use an instance of :class:`TextWrapper` for efficiency. +.. seealso:: + + Latest version of the :source:`textwrap module Python source code + <Lib/textwrap.py>` .. function:: wrap(text, width=70, **kwargs) |