diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-13 16:16:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-13 16:16:22 (GMT) |
commit | c2a3c3c643c339bac784a89d84c4de910d6c1590 (patch) | |
tree | 779a728eb3e45f77b8a13ae2eafe6b26552577de | |
parent | 79d1d6de1df47b429d92573df9db9fc90abbdf39 (diff) | |
download | cpython-c2a3c3c643c339bac784a89d84c4de910d6c1590.zip cpython-c2a3c3c643c339bac784a89d84c4de910d6c1590.tar.gz cpython-c2a3c3c643c339bac784a89d84c4de910d6c1590.tar.bz2 |
[3.12] gh-115405: add versionadded tag for co_qualname in code objects documentation (GH-115411) (#115412)
gh-115405: add versionadded tag for co_qualname in code objects documentation (GH-115411)
(cherry picked from commit de07941729b8899b187b8ef9690f9a74b2d6286b)
Co-authored-by: Christophe Papazian <114495376+christophe-papazian@users.noreply.github.com>
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index a9ce0f4..6292a1d 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1134,6 +1134,8 @@ Special read-only attributes * - .. attribute:: codeobject.co_qualname - The fully qualified function name + .. versionadded:: 3.11 + * - .. attribute:: codeobject.co_argcount - The total number of positional :term:`parameters <parameter>` (including positional-only parameters and parameters with default values) |