https://github.com/python/cpython/commit/56b294e43152298be8b65ea3d8715deb265e893d commit: 56b294e43152298be8b65ea3d8715deb265e893d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: willingc <[email protected]> date: 2024-10-30T11:00:29-07:00 summary:
[3.13] Fix incorrect indentation in importlib.metadata.rst (GH-126189) (GH-126193) Fix incorrect indentation in importlib.metadata.rst (GH-126189) (cherry picked from commit 6f512c603465ff3e51e07cb7e1d36b4e5e88905d) Co-authored-by: Rafael Fontenelle <[email protected]> files: M Doc/library/importlib.metadata.rst diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index d8c3e77980f06f..b712a559bb3b3f 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -229,10 +229,10 @@ Distribution metadata .. class:: PackageMetadata A concrete implementation of the - `PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_. + `PackageMetadata protocol <https://importlib-metadata.readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_. - In addition to providing the defined protocol methods and attributes, subscripting - the instance is equivalent to calling the :meth:`!get` method. + In addition to providing the defined protocol methods and attributes, subscripting + the instance is equivalent to calling the :meth:`!get` method. Every `Distribution Package <https://packaging.python.org/en/latest/glossary/#term-Distribution-Package>`_ includes some metadata, which you can extract using the :func:`!metadata` function:: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
