diff options
-rw-r--r-- | Doc/library/dis.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 714dbc3..c6f08af 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -1431,12 +1431,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 ``STACK[-2]``) - * the :term:`qualified name` of the function (at ``STACK[-1]``) + * the code associated with the function (at ``STACK[-1]``) .. versionchanged:: 3.10 Flag value ``0x04`` is a tuple of strings instead of dictionary + .. versionchanged:: 3.11 + Qualified name at ``STACK[-1]`` was removed. + + .. opcode:: BUILD_SLICE (argc) .. index:: pair: built-in function; slice |