#13437: link to the source code for a few more modules · pythoncapi/cpython@2e3743c · GitHub
Skip to content

Commit 2e3743c

Browse files
committed
python#13437: link to the source code for a few more modules
1 parent 26e417b commit 2e3743c

7 files changed

Lines changed: 11 additions & 3 deletions

File tree

Doc/library/code.rst

Lines changed: 1 addition & 1 deletion

Doc/library/codecs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.. sectionauthor:: Marc-André Lemburg <mal@lemburg.com>
88
.. sectionauthor:: Martin v. Löwis <martin@v.loewis.de>
99

10+
**Source code:** :source:`Lib/codecs.py`
1011

1112
.. index::
1213
single: Unicode
@@ -1418,4 +1419,3 @@ This module implements a variant of the UTF-8 codec: On encoding a UTF-8 encoded
14181419
BOM will be prepended to the UTF-8 encoded bytes. For the stateful encoder this
14191420
is only done once (on the first write to the byte stream). For decoding an
14201421
optional UTF-8 encoded BOM at the start of the data will be skipped.
1421-

Doc/library/configparser.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
.. sectionauthor:: Christopher G. Petrilli <petrilli@amber.org>
1212
.. sectionauthor:: Łukasz Langa <lukasz@langa.pl>
1313

14+
**Source code:** :source:`Lib/configparser.py`
15+
1416
.. index::
1517
pair: .ini; file
1618
pair: configuration; file

Doc/library/csv.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
:synopsis: Write and read tabular data to and from delimited files.
66
.. sectionauthor:: Skip Montanaro <skip@pobox.com>
77

8+
**Source code:** :source:`Lib/csv.py`
89

910
.. index::
1011
single: csv

Doc/library/datetime.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
.. sectionauthor:: Tim Peters <tim@zope.com>
88
.. sectionauthor:: A.M. Kuchling <amk@amk.ca>
99

10+
**Source code:** :source:`Lib/datetime.py`
11+
1012
.. XXX what order should the types be discussed in?
1113
1214
The :mod:`datetime` module supplies classes for manipulating dates and times in

Doc/library/decimal.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
.. moduleauthor:: Stefan Krah <skrah at bytereef.org>
1313
.. sectionauthor:: Raymond D. Hettinger <python at rcn.com>
1414

15+
**Source code:** :source:`Lib/decimal.py`
16+
1517
.. import modules for testing inline doctests with the Sphinx doctest builder
1618
.. testsetup:: *
1719

@@ -2092,4 +2094,3 @@ Alternatively, inputs can be rounded upon creation using the
20922094

20932095
>>> Context(prec=5, rounding=ROUND_DOWN).create_decimal('1.2345678')
20942096
Decimal('1.2345')
2095-

Doc/library/difflib.rst

Lines changed: 2 additions & 0 deletions

0 commit comments

Comments
 (0)