diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 04:01:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 04:01:58 +0200 |
commit | 4f98f465f14e7258c5b18a62c5aa114dbe1174d8 (patch) | |
tree | 98bf8f2586b42aaf9ae632f2a8220854bc43c7fc /Programs/python.c | |
parent | bpo-40268: Remove unused osdefs.h includes (GH-19532) (diff) | |
download | cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.tar.gz cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.tar.bz2 cpython-4f98f465f14e7258c5b18a62c5aa114dbe1174d8.zip |
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 'Programs/python.c')
-rw-r--r-- | Programs/python.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Programs/python.c b/Programs/python.c index 1cc3c42cfcb..84148f7767a 100644 --- a/Programs/python.c +++ b/Programs/python.c @@ -1,7 +1,6 @@ /* Minimal main program -- everything is loaded from the library */ #include "Python.h" -#include "pycore_pylifecycle.h" #ifdef MS_WINDOWS int |