diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 00:57:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 00:57:50 (GMT) |
commit | d9ea5cae1d07e1ee8b03540a9367c26205e0e360 (patch) | |
tree | 9f2b13f562839a98ba106d9229e44323db9bf0d7 /Python/initconfig.c | |
parent | 4a21e57fe55076c77b0ee454e1994ca544d09dc0 (diff) | |
download | cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.zip cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.gz cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.bz2 |
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Diffstat (limited to 'Python/initconfig.c')
-rw-r--r-- | Python/initconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/initconfig.c b/Python/initconfig.c index 201d930..32aafdb 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -7,7 +7,7 @@ #include "pycore_pathconfig.h" #include "pycore_pyerrors.h" #include "pycore_pylifecycle.h" -#include "pycore_pymem.h" +#include "pycore_pymem.h" // _PyMem_SetDefaultAllocator() #include "pycore_pystate.h" // _PyThreadState_GET() #include <locale.h> // setlocale() #ifdef HAVE_LANGINFO_H |