diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 01:24:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 01:24:57 (GMT) |
commit | 361dcdcefc80f5729ed18ac0ef73327794fbf400 (patch) | |
tree | 9ec3e27545cbf1f5f082b612ecbeb94b759827f9 /Python/pathconfig.c | |
parent | d9ea5cae1d07e1ee8b03540a9367c26205e0e360 (diff) | |
download | cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.zip cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.gz cpython-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.bz2 |
bpo-40268: Remove unused osdefs.h includes (GH-19532)
When the include is needed, add required symbol in a comment.
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 6ebfdac..fe3ac3e 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -1,7 +1,7 @@ /* Path configuration like module_search_path (sys.path) */ #include "Python.h" -#include "osdefs.h" +#include "osdefs.h" // DELIM #include "pycore_initconfig.h" #include "pycore_fileutils.h" #include "pycore_pathconfig.h" |