summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/dis.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst
index 7797938..7467f56 100644
--- a/Doc/library/dis.rst
+++ b/Doc/library/dis.rst
@@ -1260,12 +1260,15 @@ iterations of the loop.
* ``0x02`` a dictionary of keyword-only parameters' default values
* ``0x04`` a tuple of strings containing parameters' annotations
* ``0x08`` a tuple containing cells for free variables, making a closure
- * the code associated with the function (at TOS1)
- * the :term:`qualified name` of the function (at TOS)
+ * the code associated with the function (at TOS)
.. versionchanged:: 3.10
Flag value ``0x04`` is a tuple of strings instead of dictionary
+ .. versionchanged:: 3.11
+ Qualified name at TOS was removed.
+
+
.. opcode:: BUILD_SLICE (argc)
.. index:: pair: built-in function; slice