Skip to content

Commit a43f4e7

Browse files
miss-islingtonambvnot-my-profile
authored
bpo-46879: Fix incorrect sphinx object names in doc (GH-31615) (GH-92976)
(cherry picked from commit 2cdd57f) Co-authored-by: Łukasz Langa <[email protected]> Co-authored-by: Martin Fischer <[email protected]>
1 parent 9f7cdb2 commit a43f4e7

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Doc/library/asyncio-subprocess.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ Constants
127127
=========
128128

129129
.. data:: asyncio.subprocess.PIPE
130+
:module:
130131

131132
Can be passed to the *stdin*, *stdout* or *stderr* parameters.
132133

@@ -140,11 +141,13 @@ Constants
140141
attributes will point to :class:`StreamReader` instances.
141142

142143
.. data:: asyncio.subprocess.STDOUT
144+
:module:
143145

144146
Special value that can be used as the *stderr* argument and indicates
145147
that standard error should be redirected into standard output.
146148

147149
.. data:: asyncio.subprocess.DEVNULL
150+
:module:
148151

149152
Special value that can be used as the *stdin*, *stdout* or *stderr* argument
150153
to process creation functions. It indicates that the special file
@@ -160,6 +163,7 @@ wrapper that allows communicating with subprocesses and watching for
160163
their completion.
161164

162165
.. class:: asyncio.subprocess.Process
166+
:module:
163167

164168
An object that wraps OS processes created by the
165169
:func:`create_subprocess_exec` and :func:`create_subprocess_shell`

Doc/library/multiprocessing.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,6 +1648,7 @@ different machines. A manager object controls a server process which manages
16481648
proxies.
16491649

16501650
.. function:: multiprocessing.Manager()
1651+
:module:
16511652

16521653
Returns a started :class:`~multiprocessing.managers.SyncManager` object which
16531654
can be used for sharing objects between processes. The returned manager

Doc/library/xml.etree.elementtree.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,7 @@ Functions
808808
^^^^^^^^^
809809

810810
.. function:: xml.etree.ElementInclude.default_loader( href, parse, encoding=None)
811+
:module:
811812

812813
Default loader. This default loader reads an included resource from disk. *href* is a URL.
813814
*parse* is for parse mode either "xml" or "text". *encoding*
@@ -819,6 +820,7 @@ Functions
819820

820821
.. function:: xml.etree.ElementInclude.include( elem, loader=None, base_url=None, \
821822
max_depth=6)
823+
:module:
822824

823825
This function expands XInclude directives. *elem* is the root element. *loader* is
824826
an optional resource loader. If omitted, it defaults to :func:`default_loader`.

0 commit comments

Comments
 (0)