Fixes a typo in importlib.metadata. (#23921)
https://github.com/python/cpython/commit/3631d6deab064de0bb286ef2943885dca3c... commit: 3631d6deab064de0bb286ef2943885dca3c3075e branch: master author: Tao He <sighingnow@gmail.com> committer: warsaw <barry@python.org> date: 2020-12-31T11:37:53-08:00 summary: Fixes a typo in importlib.metadata. (#23921) Signed-off-by: Tao He <sighingnow@gmail.com> files: M Doc/library/importlib.metadata.rst diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index 858ed0a483874..7f154ea02cc4f 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -207,9 +207,9 @@ Thus, an alternative way to get the version number is through the There are all kinds of additional metadata available on the ``Distribution`` instance:: - >>> d.metadata['Requires-Python'] # doctest: +SKIP + >>> dist.metadata['Requires-Python'] # doctest: +SKIP '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' - >>> d.metadata['License'] # doctest: +SKIP + >>> dist.metadata['License'] # doctest: +SKIP 'MIT' The full set of available metadata is not described here. See :pep:`566`
participants (1)
-
warsaw