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/traceback.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/traceback.c')
-rw-r--r-- | Python/traceback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c index e3397ec..85e9124 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -6,7 +6,7 @@ #include "code.h" #include "frameobject.h" #include "structmember.h" // PyMemberDef -#include "osdefs.h" +#include "osdefs.h" // SEP #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif |