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

Skip to content

Commit 4da945f

Browse files
committed
Merge Issue #22558.
2 parents e670be2 + fa089b9 commit 4da945f

224 files changed

Lines changed: 542 additions & 136 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doc/library/2to3.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,10 +449,14 @@ and off individually. They are described here in more detail.
449449

450450
.. module:: lib2to3
451451
:synopsis: the 2to3 library
452+
452453
.. moduleauthor:: Guido van Rossum
453454
.. moduleauthor:: Collin Winter
454455
.. moduleauthor:: Benjamin Peterson <[email protected]>
455456

457+
**Source code:** :source:`Lib/lib2to3/`
458+
459+
--------------
456460

457461
.. note::
458462

Doc/library/__main__.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
.. module:: __main__
66
:synopsis: The environment where the top-level script is run.
77

8+
--------------
9+
810
``'__main__'`` is the name of the scope in which top-level code executes.
911
A module's __name__ is set equal to ``'__main__'`` when read from
1012
standard input, a script, or from an interactive prompt.

Doc/library/_thread.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
.. module:: _thread
55
:synopsis: Low-level threading API.
66

7-
87
.. index::
98
single: light-weight processes
109
single: processes, light-weight
1110
single: binary semaphores
1211
single: semaphores, binary
1312

13+
--------------
14+
1415
This module provides low-level primitives for working with multiple threads
1516
(also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
1617
control sharing their global data space. For synchronization, simple locks

Doc/library/abc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
.. module:: abc
55
:synopsis: Abstract base classes according to PEP 3119.
6+
67
.. moduleauthor:: Guido van Rossum
78
.. sectionauthor:: Georg Brandl
89
.. much of the content adapted from docstrings

Doc/library/aifc.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@
44
.. module:: aifc
55
:synopsis: Read and write audio files in AIFF or AIFC format.
66

7+
**Source code:** :source:`Lib/aifc.py`
78

89
.. index::
910
single: Audio Interchange File Format
1011
single: AIFF
1112
single: AIFF-C
1213

13-
**Source code:** :source:`Lib/aifc.py`
14-
1514
--------------
1615

1716
This module provides support for reading and writing AIFF and AIFF-C files.

Doc/library/argparse.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
.. module:: argparse
55
:synopsis: Command-line option and argument parsing library.
6+
67
.. moduleauthor:: Steven Bethard <[email protected]>
78
.. sectionauthor:: Steven Bethard <[email protected]>
89

Doc/library/array.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
.. module:: array
55
:synopsis: Space efficient arrays of uniformly typed numeric values.
66

7-
87
.. index:: single: arrays
98

9+
--------------
10+
1011
This module defines an object type which can compactly represent an array of
1112
basic values: characters, integers, floating point numbers. Arrays are sequence
1213
types and behave very much like lists, except that the type of objects stored in

Doc/library/asynchat.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
.. module:: asynchat
55
:synopsis: Support for asynchronous command/response protocols.
6+
67
.. moduleauthor:: Sam Rushing <[email protected]>
78
.. sectionauthor:: Steve Holden <[email protected]>
89

Doc/library/asyncio.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
.. module:: asyncio
55
:synopsis: Asynchronous I/O, event loop, coroutines and tasks.
66

7+
.. versionadded:: 3.4
8+
9+
**Source code:** :source:`Lib/asyncio/`
10+
711
.. note::
812

913
The asyncio package has been included in the standard library on a
1014
:term:`provisional basis <provisional package>`. Backwards incompatible
1115
changes (up to and including removal of the module) may occur if deemed
1216
necessary by the core developers.
1317

14-
.. versionadded:: 3.4
15-
16-
**Source code:** :source:`Lib/asyncio/`
17-
1818
--------------
1919

2020
This module provides infrastructure for writing single-threaded concurrent

Doc/library/asyncore.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
.. module:: asyncore
55
:synopsis: A base class for developing asynchronous socket handling
66
services.
7+
78
.. moduleauthor:: Sam Rushing <[email protected]>
89
.. sectionauthor:: Christopher Petrilli <[email protected]>
910
.. sectionauthor:: Steve Holden <[email protected]>

0 commit comments

Comments
 (0)