[Python-checkins] r88162 - in python/branches/py3k/Doc/library: abc.rst aifc.rst asynchat.rst asyncore.rst
raymond.hettinger
python-checkins at python.org
Mon Jan 24 17:28:06 CET 2011
Author: raymond.hettinger
Date: Mon Jan 24 17:28:06 2011
New Revision: 88162
Log:
Missing source links.
Modified:
python/branches/py3k/Doc/library/abc.rst
python/branches/py3k/Doc/library/aifc.rst
python/branches/py3k/Doc/library/asynchat.rst
python/branches/py3k/Doc/library/asyncore.rst
Modified: python/branches/py3k/Doc/library/abc.rst
==============================================================================
--- python/branches/py3k/Doc/library/abc.rst (original)
+++ python/branches/py3k/Doc/library/abc.rst Mon Jan 24 17:28:06 2011
@@ -7,6 +7,10 @@
.. sectionauthor:: Georg Brandl
.. much of the content adapted from docstrings
+**Source code:** :source:`Lib/abc.py`
+
+--------------
+
This module provides the infrastructure for defining an :term:`abstract base
class` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this
was added to Python. (See also :pep:`3141` and the :mod:`numbers` module
Modified: python/branches/py3k/Doc/library/aifc.rst
==============================================================================
--- python/branches/py3k/Doc/library/aifc.rst (original)
+++ python/branches/py3k/Doc/library/aifc.rst Mon Jan 24 17:28:06 2011
@@ -10,6 +10,10 @@
single: AIFF
single: AIFF-C
+**Source code:** :source:`Lib/aifc.py`
+
+--------------
+
This module provides support for reading and writing AIFF and AIFF-C files.
AIFF is Audio Interchange File Format, a format for storing digital audio
samples in a file. AIFF-C is a newer version of the format that includes the
Modified: python/branches/py3k/Doc/library/asynchat.rst
==============================================================================
--- python/branches/py3k/Doc/library/asynchat.rst (original)
+++ python/branches/py3k/Doc/library/asynchat.rst Mon Jan 24 17:28:06 2011
@@ -6,6 +6,9 @@
.. moduleauthor:: Sam Rushing <rushing at nightmare.com>
.. sectionauthor:: Steve Holden <sholden at holdenweb.com>
+**Source code:** :source:`Lib/asynchat.py`
+
+--------------
This module builds on the :mod:`asyncore` infrastructure, simplifying
asynchronous clients and servers and making it easier to handle protocols
Modified: python/branches/py3k/Doc/library/asyncore.rst
==============================================================================
--- python/branches/py3k/Doc/library/asyncore.rst (original)
+++ python/branches/py3k/Doc/library/asyncore.rst Mon Jan 24 17:28:06 2011
@@ -9,6 +9,9 @@
.. sectionauthor:: Steve Holden <sholden at holdenweb.com>
.. heavily adapted from original documentation by Sam Rushing
+**Source code:** :source:`Lib/asyncore.py`
+
+--------------
This module provides the basic infrastructure for writing asynchronous socket
service clients and servers.
More information about the Python-checkins
mailing list