summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/traceback.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/traceback.c b/Python/traceback.c
index 3ea1db5..ffa7c34 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -4,11 +4,12 @@
#include "Python.h"
#include "code.h" // PyCode_Addr2Line etc
-#include "pycore_interp.h" // PyInterpreterState.gc
#include "frameobject.h" // PyFrame_GetBack()
#include "pycore_ast.h" // asdl_seq_*
#include "pycore_compile.h" // _PyAST_Optimize
+#include "pycore_fileutils.h" // _Py_BEGIN_SUPPRESS_IPH
#include "pycore_frame.h" // _PyFrame_GetCode()
+#include "pycore_interp.h" // PyInterpreterState.gc
#include "pycore_parser.h" // _PyParser_ASTFromString
#include "pycore_pyarena.h" // _PyArena_Free()
#include "pycore_pyerrors.h" // _PyErr_Fetch()
@@ -17,7 +18,7 @@
#include "structmember.h" // PyMemberDef
#include "osdefs.h" // SEP
#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
+# include <fcntl.h>
#endif
#define OFF(x) offsetof(PyTracebackObject, x)