diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/dis.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index ffade3c..14de191 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -911,8 +911,8 @@ All of the following opcodes use their arguments. Combines the raised and reraised exceptions list from TOS, into an exception group to propagate from a try-except* block. Uses the original exception group from TOS1 to reconstruct the structure of reraised exceptions. Pops - two items from the stack and pushes 0 (for lasti, which is unused) followed - by the exception to reraise or ``None`` if there isn't one. + two items from the stack and pushes the exception to reraise or ``None`` + if there isn't one. .. versionadded:: 3.11 |