diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 02:01:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 02:01:58 (GMT) |
commit | 4f98f465f14e7258c5b18a62c5aa114dbe1174d8 (patch) | |
tree | 98bf8f2586b42aaf9ae632f2a8220854bc43c7fc /Python/preconfig.c | |
parent | 361dcdcefc80f5729ed18ac0ef73327794fbf400 (diff) | |
download | cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.zip cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.tar.gz cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.tar.bz2 |
bpo-40268: Remove unused imports in pylifecycle.c (GH-19533)
Remove unused imports in files:
* initconfig.c
* main.c
* preconfig.h
* pylifecycle.c
* python.c
* pythonrun.c
Diffstat (limited to 'Python/preconfig.c')
-rw-r--r-- | Python/preconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/preconfig.c b/Python/preconfig.c index 1cbfccf..262738f 100644 --- a/Python/preconfig.c +++ b/Python/preconfig.c @@ -1,6 +1,6 @@ #include "Python.h" -#include "pycore_getopt.h" -#include "pycore_initconfig.h" +#include "pycore_getopt.h" // _PyOS_GetOpt() +#include "pycore_initconfig.h" // _PyArgv #include "pycore_pymem.h" // _PyMem_GetAllocatorName() #include "pycore_runtime.h" // _PyRuntime_Initialize() #include <locale.h> // setlocale() |