]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-112983: Add the known magic value of 3495 for Python 3.11 bytecode (#112985)
authorwim glenn <jump@wimglenn.com>
Tue, 12 Dec 2023 01:47:12 +0000 (19:47 -0600)
committerGitHub <noreply@github.com>
Tue, 12 Dec 2023 01:47:12 +0000 (18:47 -0700)
Add the known magic value of 3495 for Python 3.11 bytecode

Lib/importlib/_bootstrap_external.py

index 4e96a9163248240e7870ac91bddc17f2e8f58a41..d537598ac16433f65322cf5d33e00f5dbf834a92 100644 (file)
@@ -413,6 +413,7 @@ _code_type = type(_write_atomic.__code__)
 #     Python 3.11a7 3492 (make POP_JUMP_IF_NONE/NOT_NONE/TRUE/FALSE relative)
 #     Python 3.11a7 3493 (Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative)
 #     Python 3.11a7 3494 (New location info table)
+#     Python 3.11b4 3495 (Set line number of module's RESUME instr to 0 per PEP 626)
 #     Python 3.12a1 3500 (Remove PRECALL opcode)
 #     Python 3.12a1 3501 (YIELD_VALUE oparg == stack_depth)
 #     Python 3.12a1 3502 (LOAD_FAST_CHECK, no NULL-check in LOAD_FAST)