diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 18:58:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-07 18:58:21 (GMT) |
commit | 60bcc54d2ed88861fb1232472bdeeff6460cb554 (patch) | |
tree | efea544e4995c6a1f6519940b69e8b2d148a82ae | |
parent | 034c7537d8b7f62ba9eff6a9fe8989730cce26f2 (diff) | |
download | cpython-60bcc54d2ed88861fb1232472bdeeff6460cb554.zip cpython-60bcc54d2ed88861fb1232472bdeeff6460cb554.tar.gz cpython-60bcc54d2ed88861fb1232472bdeeff6460cb554.tar.bz2 |
Put those "seealso"s together
-rw-r--r-- | Doc/library/glob.rst | 5 | ||||
-rw-r--r-- | Doc/library/quopri.rst | 7 | ||||
-rw-r--r-- | Doc/library/uu.rst | 5 |
3 files changed, 5 insertions, 12 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 0de763f..7e21f1b 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -15,9 +15,6 @@ matched. This is done by using the :func:`os.listdir` and subshell. (For tilde and shell variable expansion, use :func:`os.path.expanduser` and :func:`os.path.expandvars`.) -.. seealso:: - - Latest version of the :source:`glob module Python source code <Lib/glob.py>` .. function:: glob(pathname) @@ -53,3 +50,5 @@ preserved. :: Module :mod:`fnmatch` Shell-style filename (not path) expansion + Latest version of the :source:`glob module Python source code <Lib/glob.py>` + diff --git a/Doc/library/quopri.rst b/Doc/library/quopri.rst index 4eded5b..8af73a3 100644 --- a/Doc/library/quopri.rst +++ b/Doc/library/quopri.rst @@ -17,11 +17,6 @@ few nonprintable characters; the base64 encoding scheme available via the :mod:`base64` module is more compact if there are many such characters, as when sending a graphics file. -.. seealso:: - - Latest version of the :source:`quopri module Python source code - <Lib/quopri.py>` - .. function:: decode(input, output, header=False) Decode the contents of the *input* file and write the resulting decoded binary @@ -63,3 +58,5 @@ sending a graphics file. Module :mod:`base64` Encode and decode MIME base64 data + Latest version of the :source:`quopri module Python source code + <Lib/quopri.py>` diff --git a/Doc/library/uu.rst b/Doc/library/uu.rst index 53d269b..ac5bca4 100644 --- a/Doc/library/uu.rst +++ b/Doc/library/uu.rst @@ -21,10 +21,6 @@ that, when required, the mode is ``'rb'`` or ``'wb'`` on Windows. This code was contributed by Lance Ellinghouse, and modified by Jack Jansen. -.. seealso:: - - Latest version of the :source:`uu module Python source code <Lib/uu.py>` - The :mod:`uu` module defines the following functions: @@ -61,3 +57,4 @@ The :mod:`uu` module defines the following functions: Module :mod:`binascii` Support module containing ASCII-to-binary and binary-to-ASCII conversions. + Latest version of the :source:`uu module Python source code <Lib/uu.py>` |