From 5bcf3fb3ed22d7c7e326e09558ecaf1fa8d01d85 Mon Sep 17 00:00:00 2001 From: AN Long Date: Tue, 2 Jul 2024 18:38:41 +0800 Subject: [PATCH] Remove Py_BUILD_CORE_MODULE and Py_BUILD_CORE_MODULE in rotatingtree.c --- Modules/rotatingtree.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Modules/rotatingtree.c b/Modules/rotatingtree.c index 217e495b3d2a9d..5910e25bed6389 100644 --- a/Modules/rotatingtree.c +++ b/Modules/rotatingtree.c @@ -1,9 +1,4 @@ -#ifndef Py_BUILD_CORE_BUILTIN -# define Py_BUILD_CORE_MODULE 1 -#endif - #include "Python.h" -#include "pycore_lock.h" #include "rotatingtree.h" #define KEY_LOWER_THAN(key1, key2) ((char*)(key1) < (char*)(key2))