Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3029aff

Browse files
committed
Add missing source links.
1 parent a2f1544 commit 3029aff

7 files changed

Lines changed: 22 additions & 0 deletions

File tree

Doc/library/__future__.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
.. module:: __future__
55
:synopsis: Future statement definitions
66

7+
**Source code:** :source:`Lib/__future__.py`
8+
9+
--------------
710

811
:mod:`__future__` is a real module, and serves three purposes:
912

Doc/library/_dummy_thread.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
.. module:: _dummy_thread
55
:synopsis: Drop-in replacement for the _thread module.
66

7+
**Source code:** :source:`Lib/_dummy_thread.py`
8+
9+
--------------
710

811
This module provides a duplicate interface to the :mod:`_thread` module. It is
912
meant to be imported when the :mod:`_thread` module is not provided on a

Doc/library/xml.dom.minidom.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
.. sectionauthor:: Paul Prescod <[email protected]>
88
.. sectionauthor:: Martin v. Löwis <[email protected]>
99

10+
**Source code:** :source:`Lib/xml/dom/minidom.py`
11+
12+
--------------
1013

1114
:mod:`xml.dom.minidom` is a light-weight implementation of the Document Object
1215
Model interface. It is intended to be simpler than the full DOM and also

Doc/library/xml.dom.pulldom.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
:synopsis: Support for building partial DOM trees from SAX events.
66
.. moduleauthor:: Paul Prescod <[email protected]>
77

8+
**Source code:** :source:`Lib/xml/dom/pulldom.py`
9+
10+
--------------
811

912
:mod:`xml.dom.pulldom` allows building only selected portions of a Document
1013
Object Model representation of a document from SAX events.

Doc/library/xml.etree.elementtree.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
:synopsis: Implementation of the ElementTree API.
66
.. moduleauthor:: Fredrik Lundh <[email protected]>
77

8+
**Source code:** :source:`Lib/xml/etree/ElementTree.py`
9+
10+
--------------
811

912
The :class:`Element` type is a flexible container object, designed to store
1013
hierarchical data structures in memory. The type can be described as a cross

Doc/library/xmlrpc.client.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
.. XXX Not everything is documented yet. It might be good to describe
1111
Marshaller, Unmarshaller, getparser, dumps, loads, and Transport.
1212
13+
**Source code:** :source:`Lib/xmlrpc/client.py`
14+
15+
--------------
16+
1317
XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
1418
transport. With it, a client can call methods with parameters on a remote
1519
server (the server is named by a URI) and get back structured data. This module

Doc/library/xmlrpc.server.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
.. moduleauthor:: Brian Quinlan <[email protected]>
77
.. sectionauthor:: Fred L. Drake, Jr. <[email protected]>
88

9+
**Source code:** :source:`Lib/xmlrpc/server.py`
10+
11+
--------------
912

1013
The :mod:`xmlrpc.server` module provides a basic server framework for XML-RPC
1114
servers written in Python. Servers can either be free standing, using

0 commit comments

Comments
 (0)