gh-101799: implement PREP_RERAISE_STAR as an intrinsic function by iritkatriel · Pull Request #101800 · python/cpython

iritkatriel · GitHub

GitHub CopilotWrite better code with AI | MCP RegistryIntegrate external tools | ActionsAutomate any workflow | CodespacesInstant dev environments | IssuesPlan and track work | Code ReviewManage code changes | Code QualityEnforce quality at merge | Why GitHub | Marketplace | View all features | Enterprises | Small and medium teams | Startups | View all use cases | View all industries | View all solutions | AI | Software Development | DevOps | Security | View all topics | Customer stories | Events & webinars | Ebooks & reports | Business insights | Trust center | Partners | View all resources

Expand Up @@ -1505,7 +1505,8 @@ iterations of the loop. .. opcode:: CALL_INTRINSIC_1
Calls an intrinsic function with one argument. Passes ``STACK[-1]`` as the argument and sets ``STACK[-1]`` to the result. Used to implement functionality that is necessary but not performance critical. argument and sets ``STACK[-1]`` to the result. Used to implement functionality that is necessary but not performance critical.
The operand determines which intrinsic function is called:
Expand All @@ -1522,7 +1523,8 @@ iterations of the loop. .. opcode:: CALL_INTRINSIC_2
Calls an intrinsic function with two arguments. Passes ``STACK[-2]``, ``STACK[-1]`` as the arguments and sets ``STACK[-1]`` to the result. Used to implement functionality that is necessary but not performance critical. arguments and sets ``STACK[-1]`` to the result. Used to implement functionality that is necessary but not performance critical.
The operand determines which intrinsic function is called:
Expand Down

1 1