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

Skip to content

Commit 58d3f59

Browse files
committed
Merge with 3.5
2 parents 47e00e5 + dcb6c88 commit 58d3f59

3 files changed

Lines changed: 31 additions & 1 deletion

File tree

Doc/library/dbm.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@ The individual submodules are described in the following sections.
128128
:platform: Unix
129129
:synopsis: GNU's reinterpretation of dbm.
130130

131+
**Source code:** :source:`Lib/dbm/gnu.py`
132+
133+
--------------
131134

132135
This module is quite similar to the :mod:`dbm` module, but uses the GNU library
133136
``gdbm`` instead to provide some additional functionality. Please note that the
@@ -237,6 +240,9 @@ supported.
237240
:platform: Unix
238241
:synopsis: The standard "database" interface, based on ndbm.
239242

243+
**Source code:** :source:`Lib/dbm/ndbm.py`
244+
245+
--------------
240246

241247
The :mod:`dbm.ndbm` module provides an interface to the Unix "(n)dbm" library.
242248
Dbm objects behave like mappings (dictionaries), except that keys and values are
@@ -299,6 +305,8 @@ to locate the appropriate header file to simplify building this module.
299305
.. module:: dbm.dumb
300306
:synopsis: Portable implementation of the simple DBM interface.
301307

308+
**Source code:** :source:`Lib/dbm/dumb.py`
309+
302310
.. index:: single: databases
303311

304312
.. note::
@@ -308,6 +316,8 @@ to locate the appropriate header file to simplify building this module.
308316
module is not written for speed and is not nearly as heavily used as the other
309317
database modules.
310318

319+
--------------
320+
311321
The :mod:`dbm.dumb` module provides a persistent dictionary-like interface which
312322
is written entirely in Python. Unlike other modules such as :mod:`dbm.gnu` no
313323
external library is required. As with other persistent mappings, the keys and

Doc/library/importlib.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,11 @@ Functions
211211
.. module:: importlib.abc
212212
:synopsis: Abstract base classes related to import
213213

214+
**Source code:** :source:`Lib/importlib/abc.py`
215+
216+
--------------
217+
218+
214219
The :mod:`importlib.abc` module contains all of the core abstract base classes
215220
used by :keyword:`import`. Some subclasses of the core abstract base classes
216221
are also provided to help in implementing the core ABCs.
@@ -700,6 +705,10 @@ ABC hierarchy::
700705
.. module:: importlib.machinery
701706
:synopsis: Importers and path hooks
702707

708+
**Source code:** :source:`Lib/importlib/machinery.py`
709+
710+
--------------
711+
703712
This module contains the various objects that help :keyword:`import`
704713
find and load modules.
705714

@@ -1090,6 +1099,11 @@ find and load modules.
10901099
.. module:: importlib.util
10911100
:synopsis: Utility code for importers
10921101

1102+
1103+
**Source code:** :source:`Lib/importlib/util.py`
1104+
1105+
--------------
1106+
10931107
This module contains the various objects that help in the construction of
10941108
an :term:`importer`.
10951109

Doc/library/json.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,13 +641,19 @@ when serializing instances of "exotic" numerical types such as
641641
:class:`decimal.Decimal`.
642642

643643
.. highlight:: bash
644-
.. module:: json.tool
645644

646645
.. _json-commandline:
647646

648647
Command Line Interface
649648
----------------------
650649

650+
.. module:: json.tool
651+
:synopsis: A command line to validate and pretty-print JSON.
652+
653+
**Source code:** :source:`Lib/json/tool.py`
654+
655+
--------------
656+
651657
The :mod:`json.tool` module provides a simple command line interface to validate
652658
and pretty-print JSON objects.
653659

0 commit comments

Comments
 (0)