diff options
author | Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-03 01:28:22 -0400 |
---|---|---|
committer | Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-03 01:28:22 -0400 |
commit | d9d6307f60edb906d6ed138ba5f7d7f2eb35f100 (patch) | |
tree | b803244aeb40c088d48fb18f333c69a025e0707c /lib/asm-docs/generated/asm-docs-python.ts | |
parent | 91334b9d9bf296537f6f68b1b07033a89cafd687 (diff) | |
download | compiler-explorer-d9d6307f60edb906d6ed138ba5f7d7f2eb35f100.tar.gz compiler-explorer-d9d6307f60edb906d6ed138ba5f7d7f2eb35f100.zip |
Fix docenizer makefile and committing changes from regenerating the docsgh-7532
Diffstat (limited to 'lib/asm-docs/generated/asm-docs-python.ts')
-rw-r--r-- | lib/asm-docs/generated/asm-docs-python.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/asm-docs/generated/asm-docs-python.ts b/lib/asm-docs/generated/asm-docs-python.ts index dfaf21f7d..4283a1e99 100644 --- a/lib/asm-docs/generated/asm-docs-python.ts +++ b/lib/asm-docs/generated/asm-docs-python.ts @@ -208,8 +208,8 @@ export function getAsmOpcode(opcode: string | undefined): AssemblyInstructionInf case "END_ASYNC_FOR": return { - "html": "Terminates an async for loop. Handles an exception raised\nwhen awaiting a next item. If TOS is StopAsyncIteration pop 3\nvalues from the stack and restore the exception state using the second\nof them. Otherwise re-raise the exception using the value\nfrom the stack. An exception handler block is removed from the block stack.\nNew in version 3.8: \nChanged in version 3.11: Exception representation on the stack now consist of one, not three, items.", - "tooltip": "Terminates an async for loop. Handles an exception raised\nwhen awaiting a next item. If TOS is StopAsyncIteration pop 3\nvalues from the stack and restore the exception state using the second\nof them. Otherwise re-raise the exception using the value\nfrom the stack. An exception handler block is removed from the block stack.", + "html": "Terminates an async for loop. Handles an exception raised\nwhen awaiting a next item. The stack contains the async iterable in\nTOS1 and the raised exception in TOS. Both are popped.\nIf the exception is not StopAsyncIteration, it is re-raised.\nNew in version 3.8.\nChanged in version 3.11: Exception representation on the stack now consist of one, not three, items.", + "tooltip": "Terminates an async for loop. Handles an exception raised\nwhen awaiting a next item. The stack contains the async iterable in\nTOS1 and the raised exception in TOS. Both are popped.\nIf the exception is not StopAsyncIteration, it is re-raised.", "url": "https://docs.python.org/3/library/dis.html#opcode-END_ASYNC_FOR" }; @@ -453,8 +453,8 @@ export function getAsmOpcode(opcode: string | undefined): AssemblyInstructionInf case "MAKE_CELL": return { - "html": "Creates a new cell in slot i. If that slot is empty then\nthat value is stored into the new cell.\nNew in version 3.11.", - "tooltip": "Creates a new cell in slot i. If that slot is empty then\nthat value is stored into the new cell.", + "html": "Creates a new cell in slot i. If that slot is nonempty then\nthat value is stored into the new cell.\nNew in version 3.11.", + "tooltip": "Creates a new cell in slot i. If that slot is nonempty then\nthat value is stored into the new cell.", "url": "https://docs.python.org/3/library/dis.html#opcode-MAKE_CELL" }; |