From dc6ca4ae36128f2674b5b4c9b0ce6fdda97d4df0 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Mon, 12 Aug 2024 11:39:36 -0700 Subject: [PATCH] Remove additional specialized opcode that wasn't ordered with the others --- bytecode_ops.inl | 1 - bytes/python_3_13.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/bytecode_ops.inl b/bytecode_ops.inl index 5ab6a8f..5cc49c2 100644 --- a/bytecode_ops.inl +++ b/bytecode_ops.inl @@ -118,7 +118,6 @@ OPCODE(RESERVED) // Python 3.12 -> OPCODE(BINARY_SLICE) // Python 3.12 -> OPCODE(STORE_SLICE) // Python 3.12 -> OPCODE(CLEANUP_THROW) // Python 3.12 -> -OPCODE(BINARY_OP_INPLACE_ADD_UNICODE) // Python 3.13 -> OPCODE(EXIT_INIT_CHECK) // Python 3.13 -> OPCODE(FORMAT_SIMPLE) // Python 3.13 -> OPCODE(FORMAT_WITH_SPEC) // Python 3.13 -> diff --git a/bytes/python_3_13.cpp b/bytes/python_3_13.cpp index dc82e70..3709a10 100644 --- a/bytes/python_3_13.cpp +++ b/bytes/python_3_13.cpp @@ -4,7 +4,6 @@ BEGIN_MAP(3, 13) MAP_OP(0, CACHE) MAP_OP(1, BEFORE_ASYNC_WITH) MAP_OP(2, BEFORE_WITH) - MAP_OP(3, BINARY_OP_INPLACE_ADD_UNICODE) MAP_OP(4, BINARY_SLICE) MAP_OP(5, BINARY_SUBSCR) MAP_OP(6, CHECK_EG_MATCH)