diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-04-24 10:28:47 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-04-24 10:56:04 -0400 |
commit | 0e4070287c4da4e29cfcf6a46a4e4dd5c4b2398f (patch) | |
tree | 219c2917d76c2b3668099173d0700b0f9bd9ae77 | |
parent | da4fb66d065a57c5416cecf1ed59ebffb847165d (diff) | |
download | cpython-git-0e4070287c4da4e29cfcf6a46a4e4dd5c4b2398f.tar.gz |
Add versionchanged and versionadded declarations for changes to metadata.
-rw-r--r-- | Doc/library/importlib.metadata.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/importlib.metadata.rst b/Doc/library/importlib.metadata.rst index 41469761f2..6a14766041 100644 --- a/Doc/library/importlib.metadata.rst +++ b/Doc/library/importlib.metadata.rst @@ -176,6 +176,13 @@ all the metadata in a JSON-compatible form per PEP 566:: >>> wheel_metadata.json['requires_python'] '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' +.. versionchanged:: 3.10 + The ``Description`` is now included in the metadata when presented + through the payload. Line continuation characters have been removed. + +.. versionadded:: 3.10 + The ``json`` attribute was added. + .. _version: |