Skip to content
Snippets Groups Projects
Commit 2592e54e6a16 authored by Tao He's avatar Tao He
Browse files

Fixes a typo in importlib.metadata. (#23921)


Signed-off-by: default avatarTao He <sighingnow@gmail.com>
parent ce9758cb9bdf
No related branches found
No related tags found
No related merge requests found
......@@ -207,5 +207,5 @@
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.*'
......@@ -211,5 +211,5 @@
'>=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`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment