diff options
Diffstat (limited to 'Doc/library/dis.rst')
-rw-r--r-- | Doc/library/dis.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 1a5ca16..e44fa46 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -824,7 +824,8 @@ iterations of the loop. oparg set to be the exception block depth, for efficient closing of generators. .. versionchanged:: 3.13 - this opcode no longer has an oparg + oparg is ``1`` if this instruction is part of a yield-from or await, and ``0`` + otherwise. .. opcode:: SETUP_ANNOTATIONS |