@@ -768,16 +768,6 @@ iterations of the loop.
768768
769769 .. versionadded :: 3.11
770770
771- .. opcode :: PREP_RERAISE_STAR
772-
773- Combines the raised and reraised exceptions list from ``STACK[-1] ``, into an
774- exception group to propagate from a try-except* block. Uses the original exception
775- group from ``STACK[-2] `` to reconstruct the structure of reraised exceptions. Pops
776- two items from the stack and pushes the exception to reraise or ``None ``
777- if there isn't one.
778-
779- .. versionadded :: 3.11
780-
781771.. opcode :: WITH_EXCEPT_START
782772
783773 Calls the function in position 4 on the stack with arguments (type, val, tb)
@@ -1515,7 +1505,8 @@ iterations of the loop.
15151505.. opcode :: CALL_INTRINSIC_1
15161506
15171507 Calls an intrinsic function with one argument. Passes ``STACK[-1] `` as the
1518- argument and sets ``STACK[-1] `` to the result. Used to implement functionality that is necessary but not performance critical.
1508+ argument and sets ``STACK[-1] `` to the result. Used to implement
1509+ functionality that is necessary but not performance critical.
15191510
15201511 The operand determines which intrinsic function is called:
15211512
@@ -1529,6 +1520,19 @@ iterations of the loop.
15291520
15301521 .. versionadded :: 3.12
15311522
1523+ .. opcode :: CALL_INTRINSIC_2
1524+
1525+ Calls an intrinsic function with two arguments. Passes ``STACK[-2] ``, ``STACK[-1] `` as the
1526+ arguments and sets ``STACK[-1] `` to the result. Used to implement functionality that is
1527+ necessary but not performance critical.
1528+
1529+ The operand determines which intrinsic function is called:
1530+
1531+ * ``0 `` Not valid
1532+ * ``1 `` Calculates the :exc: `ExceptionGroup ` to raise from a ``try-except* ``.
1533+
1534+ .. versionadded :: 3.12
1535+
15321536
15331537**Pseudo-instructions **
15341538
0 commit comments