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/pathconfig.c | |
parent | bpo-40268: Remove unused structmember.h includes (GH-19530) (diff) | |
download | cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.gz cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.tar.bz2 cpython-d9ea5cae1d07e1ee8b03540a9367c26205e0e360.zip |
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Diffstat (limited to 'Python/pathconfig.c')
-rw-r--r-- | Python/pathconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pathconfig.c b/Python/pathconfig.c index 1515926531a..6ebfdac3fd2 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -5,7 +5,7 @@ #include "pycore_initconfig.h" #include "pycore_fileutils.h" #include "pycore_pathconfig.h" -#include "pycore_pymem.h" +#include "pycore_pymem.h" // _PyMem_SetDefaultAllocator() #include <wchar.h> #ifdef MS_WINDOWS # include <windows.h> // GetFullPathNameW(), MAX_PATH |