Skip to content

[3.11] bpo-46879: Fix incorrect sphinx object names in doc (GH-31615) #92974

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Doc/library/asyncio-subprocess.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ Constants
=========

.. data:: asyncio.subprocess.PIPE
:module:

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

Expand All @@ -137,11 +138,13 @@ Constants
attributes will point to :class:`StreamReader` instances.

.. data:: asyncio.subprocess.STDOUT
:module:

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

.. data:: asyncio.subprocess.DEVNULL
:module:

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

.. class:: asyncio.subprocess.Process
:module:

An object that wraps OS processes created by the
:func:`create_subprocess_exec` and :func:`create_subprocess_shell`
Expand Down
1 change: 1 addition & 0 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1666,6 +1666,7 @@ different machines. A manager object controls a server process which manages
proxies.

.. function:: multiprocessing.Manager()
:module:

Returns a started :class:`~multiprocessing.managers.SyncManager` object which
can be used for sharing objects between processes. The returned manager
Expand Down
2 changes: 2 additions & 0 deletions Doc/library/xml.etree.elementtree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,7 @@ Functions
^^^^^^^^^

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

Default loader. This default loader reads an included resource from disk. *href* is a URL.
*parse* is for parse mode either "xml" or "text". *encoding*
Expand All @@ -837,6 +838,7 @@ Functions

.. function:: xml.etree.ElementInclude.include( elem, loader=None, base_url=None, \
max_depth=6)
:module:

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