From: AN Long Date: Wed, 3 Jul 2024 07:35:05 +0000 (+0800) Subject: gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree... X-Git-Tag: v3.14.0a1~1249 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=705a123898f1394b62076c00ab6008c18fd8e115;p=thirdparty%2FPython%2Fcpython.git gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree.c (#121260) --- diff --git a/Modules/rotatingtree.c b/Modules/rotatingtree.c index 217e495b3d2a..5910e25bed63 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))