diff options
author | Mark Shannon <mark@hotpy.org> | 2022-06-14 11:09:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 11:09:30 +0100 |
commit | 3cd1a5d3ec487e23e3d976e7dd235329f04cfc73 (patch) | |
tree | 53e270197be3ceec9e38277ec30a0338631a6727 /Lib/opcode.py | |
parent | 2bf74753c14e5360e04930b478703f4e2618f4a3 (diff) | |
download | cpython-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.py | 2 |
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) |