diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-17 19:59:21 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2017-10-17 19:59:21 (GMT) |
commit | 858ea4354fafa36e57859d2dfd70f8a057984075 (patch) | |
tree | 86b074a114136dd1490b2946decfbc8b363d51c7 /Doc/reference | |
parent | 06949585d292d1a9dbf2d0d0fa8fc8fe1dee3ccf (diff) | |
download | cpython-858ea4354fafa36e57859d2dfd70f8a057984075.zip cpython-858ea4354fafa36e57859d2dfd70f8a057984075.tar.gz cpython-858ea4354fafa36e57859d2dfd70f8a057984075.tar.bz2 |
[3.6] bpo-31799: Make module.__spec__ more discoverable (GH-4010) (#4021)
bpo-31799: Make module.__spec__ more discoverable
(cherry picked from commit 191e3138200906e43cba9347177914325b54843f)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/import.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 8cf16ca..7fbf8ed 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -519,8 +519,9 @@ and the loader that executes it. Most importantly, it allows the import machinery to perform the boilerplate operations of loading, whereas without a module spec the loader had that responsibility. -See :class:`~importlib.machinery.ModuleSpec` for more specifics on what -information a module's spec may hold. +The module's spec is exposed as the ``__spec__`` attribute on a module object. +See :class:`~importlib.machinery.ModuleSpec` for details on the contents of +the module spec. .. versionadded:: 3.4 |