https://github.com/python/cpython/commit/b2dbc4f3a76d1a30da61294414d3e65ea36a9ce9 commit: b2dbc4f3a76d1a30da61294414d3e65ea36a9ce9 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-03-27T15:43:03+02:00 summary:
[3.12] Fix typo in importlib.metadata.rst (gh-131596) (#131631) Fix typo in importlib.metadata.rst (gh-131596) (cherry picked from commit 5fc889ffbfd271c651f563ab0afe2d345bacbca5) Co-authored-by: Zsolt Dollenstein <[email protected]> files: M Doc/library/importlib.metadata.rst diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index 5dcaabba9f1661..826ff780533e26 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -420,7 +420,7 @@ While the module level API described above is the most common and convenient usa you can get all of that information from the :class:`!Distribution` class. :class:`!Distribution` is an abstract object that represents the metadata for a Python `Distribution Package <https://packaging.python.org/en/latest/glossary/#term-Distribution-Package>`_. -You can get the concreate :class:`!Distribution` subclass instance for an installed +You can get the concrete :class:`!Distribution` subclass instance for an installed distribution package by calling the :func:`distribution` function:: >>> from importlib.metadata import distribution # doctest: +SKIP _______________________________________________ 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]
