summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 02:57:50 +0200
committerGitHub <noreply@github.com>2020-04-15 02:57:50 +0200
commitd9ea5cae1d07e1ee8b03540a9367c26205e0e360 (patch)
tree9f2b13f562839a98ba106d9229e44323db9bf0d7 /Python/sysmodule.c
parent4a21e57fe55076c77b0ee454e1994ca544d09dc0 (diff)
downloadcpython-git-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.gz
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 63111d58ab..4e67325318 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -17,14 +17,14 @@ Data members:
#include "Python.h"
#include "code.h"
#include "frameobject.h"
-#include "pycore_ceval.h" // _Py_RecursionLimitLowerWaterMark()
+#include "pycore_ceval.h" // _Py_RecursionLimitLowerWaterMark()
#include "pycore_initconfig.h"
#include "pycore_object.h"
#include "pycore_pathconfig.h"
#include "pycore_pyerrors.h"
#include "pycore_pylifecycle.h"
-#include "pycore_pymem.h"
-#include "pycore_pystate.h" // _PyThreadState_GET()
+#include "pycore_pymem.h" // _PyMem_SetDefaultAllocator()
+#include "pycore_pystate.h" // _PyThreadState_GET()
#include "pycore_tupleobject.h"
#include "pydtrace.h"