]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree...
authorAN Long <aisk@users.noreply.github.com>
Wed, 3 Jul 2024 07:35:05 +0000 (15:35 +0800)
committerGitHub <noreply@github.com>
Wed, 3 Jul 2024 07:35:05 +0000 (13:05 +0530)
Modules/rotatingtree.c

index 217e495b3d2a9d95b34637177ba91f64b4ceca16..5910e25bed6389182639c04a763e8949c395bc5b 100644 (file)
@@ -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))