diff options
author | Antoine Pitrou <antoine@python.org> | 2023-09-25 17:50:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 17:50:39 (GMT) |
commit | 88a6137cdb81c80440d9d1ee7dee17ea0b820f11 (patch) | |
tree | 270d9673418978c1344c8061d65e0f9ceb9df619 /Doc/library/types.rst | |
parent | bc06743533b5fea2d5ecdad6dd3caa372c67439f (diff) | |
download | cpython-88a6137cdb81c80440d9d1ee7dee17ea0b820f11.zip cpython-88a6137cdb81c80440d9d1ee7dee17ea0b820f11.tar.gz cpython-88a6137cdb81c80440d9d1ee7dee17ea0b820f11.tar.bz2 |
gh-109599: Add types.CapsuleType (#109600)
---------
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Doc/library/types.rst')
-rw-r--r-- | Doc/library/types.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst index 875916b..54c3907 100644 --- a/Doc/library/types.rst +++ b/Doc/library/types.rst @@ -472,6 +472,12 @@ Standard names are defined for the following types: .. versionadded:: 3.12 +.. class:: CapsuleType + + The type of :ref:`capsule objects <capsules>`. + + .. versionadded:: 3.13 + Additional Utility Classes and Functions ---------------------------------------- |