]> granicus.if.org Git - python/commitdiff
Missing source links.
authorRaymond Hettinger <python@rcn.com>
Mon, 24 Jan 2011 16:28:06 +0000 (16:28 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 24 Jan 2011 16:28:06 +0000 (16:28 +0000)
Doc/library/abc.rst
Doc/library/aifc.rst
Doc/library/asynchat.rst
Doc/library/asyncore.rst

index 0302eb5451490798017b7a8a70acbdbc179a43cd..9fadbd234e337b1d0b350e75e1f09b5fd3c15e8b 100644 (file)
@@ -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
index 304437d9a209b174d674d5a49470569fae6d64e3..999bad83ca8a59ce09c0969487659f7c8ff73eb9 100644 (file)
    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
index 26d3290684ff22b5fe343129c69a99d698b517fc..75b3cdaad36c66b86012d099f2b939e56f63abb5 100644 (file)
@@ -6,6 +6,9 @@
 .. moduleauthor:: Sam Rushing <rushing@nightmare.com>
 .. sectionauthor:: Steve Holden <sholden@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
index 8e6c2430317a4c50d4e39d0e695abbd72e12c0a6..b168ca718832f661450836eed4336f18cc9270c8 100644 (file)
@@ -9,6 +9,9 @@
 .. sectionauthor:: Steve Holden <sholden@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.