From 3051d0cca6ffe5f483b760c173cf4b8df4ad28e4 Mon Sep 17 00:00:00 2001 From: Adorilson Bezerra Date: Sun, 31 Dec 2023 00:31:09 +0000 Subject: [PATCH] Doc: Add builtin_function.__text_signature__ attribute --- Doc/reference/datamodel.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index e5e45f1ab20361..c52bbe865e874b 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -842,6 +842,9 @@ Special read-only attributes * - .. attribute:: builtin_function.__self__ - It is set to ``None`` (but see :ref:`built-in methods `). + * - .. attribute:: builtin_function.__text_signature__ + - The function's signature as plain text, or ``None`` if unavailable. + .. _builtin-methods: