From 562f26bb94f38c2bc640d09ff4dd51d110a28215 Mon Sep 17 00:00:00 2001 From: Matt Page Date: Wed, 4 Sep 2024 16:13:09 -0700 Subject: [PATCH] Enable unpack_sequence --- Include/internal/pycore_code.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 798224211b6071..d47d5d665aae30 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -346,8 +346,8 @@ extern void _PyCode_Clear_Executors(PyCodeObject *code); #define ENABLE_SPECIALIZED_SEND 0 && ENABLE_SPECIALIZATION #define ENABLE_SPECIALIZED_STORE_ATTR 0 && ENABLE_SPECIALIZATION #define ENABLE_SPECIALIZED_STORE_SUBSCR 0 && ENABLE_SPECIALIZATION -#define ENABLE_SPECIALIZED_TO_BOOL 1 && ENABLE_SPECIALIZATION -#define ENABLE_SPECIALIZED_UNPACK_SEQUENCE 0 && ENABLE_SPECIALIZATION +#define ENABLE_SPECIALIZED_TO_BOOL 0 && ENABLE_SPECIALIZATION +#define ENABLE_SPECIALIZED_UNPACK_SEQUENCE 1 && ENABLE_SPECIALIZATION #endif /* Specialization functions */