diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 02:57:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 02:57:50 +0200 |
commit | d9ea5cae1d07e1ee8b03540a9367c26205e0e360 (patch) | |
tree | 9f2b13f562839a98ba106d9229e44323db9bf0d7 /Python/preconfig.c | |
parent | 4a21e57fe55076c77b0ee454e1994ca544d09dc0 (diff) | |
download | cpython-git-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.gz |
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Diffstat (limited to 'Python/preconfig.c')
-rw-r--r-- | Python/preconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/preconfig.c b/Python/preconfig.c index 531d8d0df3..1cbfccfe69 100644 --- a/Python/preconfig.c +++ b/Python/preconfig.c @@ -1,9 +1,9 @@ #include "Python.h" #include "pycore_getopt.h" #include "pycore_initconfig.h" -#include "pycore_pymem.h" // _PyMem_GetAllocatorName() -#include "pycore_runtime.h" // _PyRuntime_Initialize() -#include <locale.h> // setlocale() +#include "pycore_pymem.h" // _PyMem_GetAllocatorName() +#include "pycore_runtime.h" // _PyRuntime_Initialize() +#include <locale.h> // setlocale() #define DECODE_LOCALE_ERR(NAME, LEN) \ |