Skip to content

Commit 4f707fd

Browse files
committed
Separate source link from main text.
1 parent 04da1e0 commit 4f707fd

27 files changed

+53
-1
lines changed

Doc/library/ast.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
**Source code:** :source:`Lib/ast.py`
1111

12+
--------------
13+
1214
The :mod:`ast` module helps Python applications to process trees of the Python
1315
abstract syntax grammar. The abstract syntax itself might change with each
1416
Python release; this module helps to find out programmatically what the current

Doc/library/bisect.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
1010
**Source code:** :source:`Lib/bisect.py`
1111

12+
--------------
13+
1214
This module provides support for maintaining a list in sorted order without
1315
having to sort the list after each insertion. For long lists of items with
1416
expensive comparison operations, this can be an improvement over the more common

Doc/library/calendar.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
**Source code:** :source:`Lib/calendar.py`
1010

11+
--------------
12+
1113
This module allows you to output calendars like the Unix :program:`cal` program,
1214
and provides additional useful functions related to the calendar. By default,
1315
these calendars have Monday as the first day of the week, and Sunday as the last

Doc/library/cmd.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
**Source code:** :source:`Lib/cmd.py`
99

10+
--------------
11+
1012
The :class:`Cmd` class provides a simple framework for writing line-oriented
1113
command interpreters. These are often useful for test harnesses, administrative
1214
tools, and prototypes that will later be wrapped in a more sophisticated

Doc/library/collections.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
**Source code:** :source:`Lib/collections.py`
1616

17+
--------------
18+
1719
This module implements specialized container datatypes providing alternatives to
1820
Python's general purpose built-in containers, :class:`dict`, :class:`list`,
1921
:class:`set`, and :class:`tuple`.

Doc/library/contextlib.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
**Source code:** :source:`Lib/contextlib.py`
88

9+
--------------
10+
911
This module provides utilities for common tasks involving the :keyword:`with`
1012
statement. For more information see also :ref:`typecontextmanager` and
1113
:ref:`context-managers`.

Doc/library/dis.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
**Source code:** :source:`Lib/dis.py`
88

9+
--------------
10+
911
The :mod:`dis` module supports the analysis of CPython :term:`bytecode` by
1012
disassembling it. The CPython bytecode which this module takes as an
1113
input is defined in the file :file:`Include/opcode.h` and used by the compiler

Doc/library/filecmp.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
**Source code:** :source:`Lib/filecmp.py`
99

10+
--------------
11+
1012
The :mod:`filecmp` module defines functions to compare files and directories,
1113
with various optional time/correctness trade-offs. For comparing files,
1214
see also the :mod:`difflib` module.

Doc/library/fileinput.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
**Source code:** :source:`Lib/fileinput.py`
1010

11+
--------------
12+
1113
This module implements a helper class and functions to quickly write a
1214
loop over standard input or a list of files. If you just want to read or
1315
write one file see :func:`open`.

Doc/library/fnmatch.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
**Source code:** :source:`Lib/fnmatch.py`
1313

14+
--------------
15+
1416
This module provides support for Unix shell-style wildcards, which are *not* the
1517
same as regular expressions (which are documented in the :mod:`re` module). The
1618
special characters used in shell-style wildcards are:

0 commit comments

Comments
 (0)