diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-07 00:44:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-07 00:44:03 +0100 |
commit | 9fc57a384825530635ef5ec093a31d864ea14f7c (patch) | |
tree | b081652318026bc437ddbbebff9ad2e59da5f454 /Python/pathconfig.c | |
parent | bccacd19fa7b56dcf2fbfab15992b6b94ab6666b (diff) | |
download | cpython-git-9fc57a384825530635ef5ec093a31d864ea14f7c.tar.gz |
bpo-35081: Add pycore_fileutils.h (GH-10371)
Move Py_BUILD_CORE code from Include/fileutils.h to a new
Include/internal/pycore_fileutils.h file.
Diffstat (limited to 'Python/pathconfig.c')
-rw-r--r-- | Python/pathconfig.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pathconfig.c b/Python/pathconfig.c index f8bcc2886a..2d8b417d31 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -3,6 +3,7 @@ #include "Python.h" #include "osdefs.h" #include "pycore_mem.h" +#include "pycore_fileutils.h" #include "pycore_pathconfig.h" #include "pycore_state.h" #include <wchar.h> |