From a1a82318d105d5f9e5d2cfd0c36c957633099f7e Mon Sep 17 00:00:00 2001 From: Adorilson Bezerra Date: Sat, 30 Dec 2023 17:52:13 +0000 Subject: [PATCH] Doc: Add builtin_function.__qualname__ attribute --- Doc/reference/datamodel.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index da6e91f457b8fc..5ed3dd9d8ae4fe 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -828,6 +828,10 @@ Special read-only attributes - The function's name. See :attr:`function.__name__`. + * - .. attribute:: builtin_function.__qualname__ + - The function's :term:`qualified name`. + See also: :attr:`__qualname__ attributes `. + * - .. attribute:: builtin_function.__self__ - It is set to ``None`` (but see :ref:`built-in methods `).