diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 03:24:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 03:24:57 +0200 |
commit | 361dcdcefc80f5729ed18ac0ef73327794fbf400 (patch) | |
tree | 9ec3e27545cbf1f5f082b612ecbeb94b759827f9 /Python/sysmodule.c | |
parent | d9ea5cae1d07e1ee8b03540a9367c26205e0e360 (diff) | |
download | cpython-git-361dcdcefc80f5729ed18ac0ef73327794fbf400.tar.gz |
bpo-40268: Remove unused osdefs.h includes (GH-19532)
When the include is needed, add required symbol in a comment.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4e67325318..92ea5e7d63 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -26,9 +26,9 @@ Data members: #include "pycore_pymem.h" // _PyMem_SetDefaultAllocator() #include "pycore_pystate.h" // _PyThreadState_GET() #include "pycore_tupleobject.h" -#include "pydtrace.h" -#include "osdefs.h" +#include "pydtrace.h" +#include "osdefs.h" // DELIM #include <locale.h> #ifdef MS_WINDOWS |