[Python-checkins] r88384 - in python/branches/py3k/Doc/library: __future__.rst _dummy_thread.rst xml.dom.minidom.rst xml.dom.pulldom.rst xml.etree.elementtree.rst xmlrpc.client.rst xmlrpc.server.rst

raymond.hettinger python-checkins at python.org
Thu Feb 10 09:09:36 CET 2011


Author: raymond.hettinger
Date: Thu Feb 10 09:09:36 2011
New Revision: 88384

Log:
Add missing source links.

Modified:
   python/branches/py3k/Doc/library/__future__.rst
   python/branches/py3k/Doc/library/_dummy_thread.rst
   python/branches/py3k/Doc/library/xml.dom.minidom.rst
   python/branches/py3k/Doc/library/xml.dom.pulldom.rst
   python/branches/py3k/Doc/library/xml.etree.elementtree.rst
   python/branches/py3k/Doc/library/xmlrpc.client.rst
   python/branches/py3k/Doc/library/xmlrpc.server.rst

Modified: python/branches/py3k/Doc/library/__future__.rst
==============================================================================
--- python/branches/py3k/Doc/library/__future__.rst	(original)
+++ python/branches/py3k/Doc/library/__future__.rst	Thu Feb 10 09:09:36 2011
@@ -4,6 +4,9 @@
 .. module:: __future__
    :synopsis: Future statement definitions
 
+**Source code:** :source:`Lib/__future__.py`
+
+--------------
 
 :mod:`__future__` is a real module, and serves three purposes:
 

Modified: python/branches/py3k/Doc/library/_dummy_thread.rst
==============================================================================
--- python/branches/py3k/Doc/library/_dummy_thread.rst	(original)
+++ python/branches/py3k/Doc/library/_dummy_thread.rst	Thu Feb 10 09:09:36 2011
@@ -4,6 +4,9 @@
 .. module:: _dummy_thread
    :synopsis: Drop-in replacement for the _thread module.
 
+**Source code:** :source:`Lib/_dummy_thread.py`
+
+--------------
 
 This module provides a duplicate interface to the :mod:`_thread` module.  It is
 meant to be imported when the :mod:`_thread` module is not provided on a

Modified: python/branches/py3k/Doc/library/xml.dom.minidom.rst
==============================================================================
--- python/branches/py3k/Doc/library/xml.dom.minidom.rst	(original)
+++ python/branches/py3k/Doc/library/xml.dom.minidom.rst	Thu Feb 10 09:09:36 2011
@@ -7,6 +7,9 @@
 .. sectionauthor:: Paul Prescod <paul at prescod.net>
 .. sectionauthor:: Martin v. Löwis <martin at v.loewis.de>
 
+**Source code:** :source:`Lib/xml/dom/minidom.py`
+
+--------------
 
 :mod:`xml.dom.minidom` is a light-weight implementation of the Document Object
 Model interface.  It is intended to be simpler than the full DOM and also

Modified: python/branches/py3k/Doc/library/xml.dom.pulldom.rst
==============================================================================
--- python/branches/py3k/Doc/library/xml.dom.pulldom.rst	(original)
+++ python/branches/py3k/Doc/library/xml.dom.pulldom.rst	Thu Feb 10 09:09:36 2011
@@ -5,6 +5,9 @@
    :synopsis: Support for building partial DOM trees from SAX events.
 .. moduleauthor:: Paul Prescod <paul at prescod.net>
 
+**Source code:** :source:`Lib/xml/dom/pulldom.py`
+
+--------------
 
 :mod:`xml.dom.pulldom` allows building only selected portions of a Document
 Object Model representation of a document from SAX events.

Modified: python/branches/py3k/Doc/library/xml.etree.elementtree.rst
==============================================================================
--- python/branches/py3k/Doc/library/xml.etree.elementtree.rst	(original)
+++ python/branches/py3k/Doc/library/xml.etree.elementtree.rst	Thu Feb 10 09:09:36 2011
@@ -5,6 +5,9 @@
    :synopsis: Implementation of the ElementTree API.
 .. moduleauthor:: Fredrik Lundh <fredrik at pythonware.com>
 
+**Source code:** :source:`Lib/xml/etree/ElementTree.py`
+
+--------------
 
 The :class:`Element` type is a flexible container object, designed to store
 hierarchical data structures in memory.  The type can be described as a cross

Modified: python/branches/py3k/Doc/library/xmlrpc.client.rst
==============================================================================
--- python/branches/py3k/Doc/library/xmlrpc.client.rst	(original)
+++ python/branches/py3k/Doc/library/xmlrpc.client.rst	Thu Feb 10 09:09:36 2011
@@ -10,6 +10,10 @@
 .. XXX Not everything is documented yet.  It might be good to describe
    Marshaller, Unmarshaller, getparser, dumps, loads, and Transport.
 
+**Source code:** :source:`Lib/xmlrpc/client.py`
+
+--------------
+
 XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
 transport.  With it, a client can call methods with parameters on a remote
 server (the server is named by a URI) and get back structured data.  This module

Modified: python/branches/py3k/Doc/library/xmlrpc.server.rst
==============================================================================
--- python/branches/py3k/Doc/library/xmlrpc.server.rst	(original)
+++ python/branches/py3k/Doc/library/xmlrpc.server.rst	Thu Feb 10 09:09:36 2011
@@ -6,6 +6,9 @@
 .. moduleauthor:: Brian Quinlan <brianq at activestate.com>
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
 
+**Source code:** :source:`Lib/xmlrpc/server.py`
+
+--------------
 
 The :mod:`xmlrpc.server` module provides a basic server framework for XML-RPC
 servers written in Python.  Servers can either be free standing, using


More information about the Python-checkins mailing list