summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-07-03 07:59:26 (GMT)
committerGitHub <noreply@github.com>2024-07-03 07:59:26 (GMT)
commit85971492b7afb0e29a1104dbf8adebe8d0336cf5 (patch)
tree793fd0feec2789abbd91dbd43df80b779c090c90
parent89bf33732fd53fbb954aa088cfb34f13264746ad (diff)
downloadcpython-85971492b7afb0e29a1104dbf8adebe8d0336cf5.zip
cpython-85971492b7afb0e29a1104dbf8adebe8d0336cf5.tar.gz
cpython-85971492b7afb0e29a1104dbf8adebe8d0336cf5.tar.bz2
[3.13] gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree.c (GH-121260) (#121307)
gh-116181: Remove Py_BUILD_CORE_BUILTIN and Py_BUILD_CORE_MODULE in rotatingtree.c (GH-121260) (cherry picked from commit 705a123898f1394b62076c00ab6008c18fd8e115) Co-authored-by: AN Long <aisk@users.noreply.github.com>
-rw-r--r--Modules/rotatingtree.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Modules/rotatingtree.c b/Modules/rotatingtree.c
index 217e495..5910e25 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))