diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-07-12 11:30:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 11:30:25 +0100 |
commit | 2ca008e2b738b8c08b4bf46b2b23f315d6510d92 (patch) | |
tree | ca5812fe257be990c39b22c58c6d1249b17cbb6e /Python/optimizer.c | |
parent | 42bc485a24f0f67751474bd1697e1beb4a783b9a (diff) | |
download | cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.tar.gz cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.zip |
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_metadata.h (#106673)
Diffstat (limited to 'Python/optimizer.c')
-rw-r--r-- | Python/optimizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/optimizer.c b/Python/optimizer.c index 7fc40e66057..c3fdee63a7e 100644 --- a/Python/optimizer.c +++ b/Python/optimizer.c @@ -2,7 +2,7 @@ #include "opcode.h" #include "pycore_interp.h" #include "pycore_opcode.h" -#include "opcode_metadata.h" +#include "pycore_opcode_metadata.h" #include "pycore_opcode_utils.h" #include "pycore_pystate.h" // _PyInterpreterState_GET() #include "pycore_uops.h" |