mirror of
https://github.com/python/cpython.git
synced 2025-09-29 19:56:59 +00:00
Clarify attribute docs on types.ModuleType (GH-24974)
(cherry picked from commit 76b5d714e4
)
Co-authored-by: Brett Cannon <brett@python.org>
This commit is contained in:
parent
994a519915
commit
10e17bc693
1 changed files with 30 additions and 2 deletions
|
@ -209,7 +209,7 @@ Standard names are defined for the following types:
|
||||||
|
|
||||||
.. class:: ModuleType(name, doc=None)
|
.. class:: ModuleType(name, doc=None)
|
||||||
|
|
||||||
The type of :term:`modules <module>`. Constructor takes the name of the
|
The type of :term:`modules <module>`. The constructor takes the name of the
|
||||||
module to be created and optionally its :term:`docstring`.
|
module to be created and optionally its :term:`docstring`.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
@ -224,12 +224,23 @@ Standard names are defined for the following types:
|
||||||
|
|
||||||
The :term:`loader` which loaded the module. Defaults to ``None``.
|
The :term:`loader` which loaded the module. Defaults to ``None``.
|
||||||
|
|
||||||
|
This attribute is to match :attr:`importlib.machinery.ModuleSpec.loader`
|
||||||
|
as stored in the attr:`__spec__` object.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
A future version of Python may stop setting this attribute by default.
|
||||||
|
To guard against this potential change, preferrably read from the
|
||||||
|
:attr:`__spec__` attribute instead or use
|
||||||
|
``getattr(module, "__loader__", None)`` if you explicitly need to use
|
||||||
|
this attribute.
|
||||||
|
|
||||||
.. versionchanged:: 3.4
|
.. versionchanged:: 3.4
|
||||||
Defaults to ``None``. Previously the attribute was optional.
|
Defaults to ``None``. Previously the attribute was optional.
|
||||||
|
|
||||||
.. attribute:: __name__
|
.. attribute:: __name__
|
||||||
|
|
||||||
The name of the module.
|
The name of the module. Expected to match
|
||||||
|
:attr:`importlib.machinery.ModuleSpec.name`.
|
||||||
|
|
||||||
.. attribute:: __package__
|
.. attribute:: __package__
|
||||||
|
|
||||||
|
@ -238,9 +249,26 @@ Standard names are defined for the following types:
|
||||||
to ``''``, else it should be set to the name of the package (which can be
|
to ``''``, else it should be set to the name of the package (which can be
|
||||||
:attr:`__name__` if the module is a package itself). Defaults to ``None``.
|
:attr:`__name__` if the module is a package itself). Defaults to ``None``.
|
||||||
|
|
||||||
|
This attribute is to match :attr:`importlib.machinery.ModuleSpec.parent`
|
||||||
|
as stored in the attr:`__spec__` object.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
A future version of Python may stop setting this attribute by default.
|
||||||
|
To guard against this potential change, preferrably read from the
|
||||||
|
:attr:`__spec__` attribute instead or use
|
||||||
|
``getattr(module, "__package__", None)`` if you explicitly need to use
|
||||||
|
this attribute.
|
||||||
|
|
||||||
.. versionchanged:: 3.4
|
.. versionchanged:: 3.4
|
||||||
Defaults to ``None``. Previously the attribute was optional.
|
Defaults to ``None``. Previously the attribute was optional.
|
||||||
|
|
||||||
|
.. attribute:: __spec__
|
||||||
|
|
||||||
|
A record of the the module's import-system-related state. Expected to be
|
||||||
|
an instance of :class:`importlib.machinery.ModuleSpec`.
|
||||||
|
|
||||||
|
.. versionadded:: 3.4
|
||||||
|
|
||||||
|
|
||||||
.. class:: GenericAlias(t_origin, t_args)
|
.. class:: GenericAlias(t_origin, t_args)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue