[Python-checkins] r87902 - in python/branches/py3k/Doc/library: functools.rst quopri.rst
raymond.hettinger
python-checkins at python.org
Mon Jan 10 22:16:07 CET 2011
Author: raymond.hettinger
Date: Mon Jan 10 22:16:07 2011
New Revision: 87902
Log:
Missed two source links
Modified:
python/branches/py3k/Doc/library/functools.rst
python/branches/py3k/Doc/library/quopri.rst
Modified: python/branches/py3k/Doc/library/functools.rst
==============================================================================
--- python/branches/py3k/Doc/library/functools.rst (original)
+++ python/branches/py3k/Doc/library/functools.rst Mon Jan 10 22:16:07 2011
@@ -8,16 +8,14 @@
.. moduleauthor:: Nick Coghlan <ncoghlan at gmail.com>
.. sectionauthor:: Peter Harris <scav at blueyonder.co.uk>
+**Source code:** :source:`Lib/functools.py`
+
+--------------
The :mod:`functools` module is for higher-order functions: functions that act on
or return other functions. In general, any callable object can be treated as a
function for the purposes of this module.
-.. seealso::
-
- Latest version of the :source:`functools Python source code
- <Lib/functools.py>`
-
The :mod:`functools` module defines the following functions:
.. function:: cmp_to_key(func)
Modified: python/branches/py3k/Doc/library/quopri.rst
==============================================================================
--- python/branches/py3k/Doc/library/quopri.rst (original)
+++ python/branches/py3k/Doc/library/quopri.rst Mon Jan 10 22:16:07 2011
@@ -9,6 +9,10 @@
pair: quoted-printable; encoding
single: MIME; quoted-printable encoding
+**Source code:** :source:`Lib/quopri.py`
+
+--------------
+
This module performs quoted-printable transport encoding and decoding, as
defined in :rfc:`1521`: "MIME (Multipurpose Internet Mail Extensions) Part One:
Mechanisms for Specifying and Describing the Format of Internet Message Bodies".
@@ -57,6 +61,3 @@
Module :mod:`base64`
Encode and decode MIME base64 data
-
- Latest version of the :source:`quopri module Python source code
- <Lib/quopri.py>`
More information about the Python-checkins
mailing list