summaryrefslogtreecommitdiff
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-06-14 11:09:30 +0100
committerGitHub <noreply@github.com>2022-06-14 11:09:30 +0100
commit3cd1a5d3ec487e23e3d976e7dd235329f04cfc73 (patch)
tree53e270197be3ceec9e38277ec30a0338631a6727 /Lib/opcode.py
parent2bf74753c14e5360e04930b478703f4e2618f4a3 (diff)
downloadcpython-git-3cd1a5d3ec487e23e3d976e7dd235329f04cfc73.tar.gz
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 0996cc7eb0..8ae997e4b6 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -177,7 +177,7 @@ def_op('LOAD_CLASSDEREF', 148)
hasfree.append(148)
def_op('COPY_FREE_VARS', 149)
def_op('YIELD_VALUE', 150)
-def_op('RESUME', 151)
+def_op('RESUME', 151) # This must be kept in sync with deepfreeze.py
def_op('MATCH_CLASS', 152)
def_op('FORMAT_VALUE', 155)