From d9d6307f60edb906d6ed138ba5f7d7f2eb35f100 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 3 Jun 2023 01:28:22 -0400 Subject: Fix docenizer makefile and committing changes from regenerating the docs --- lib/asm-docs/generated/asm-docs-python.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/asm-docs/generated/asm-docs-python.ts') 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" }; -- cgit v1.2.3