File tree Expand file tree Collapse file tree 3 files changed +0
-20
lines changed Expand file tree Collapse file tree 3 files changed +0
-20
lines changed Original file line number Diff line number Diff line change 4
4
/* XXX Signals should be recorded per thread, now we have thread state. */
5
5
6
6
#include "Python.h"
7
-
8
- #ifdef MS_WINDOWS
9
- // These must be included before pycore_runtime.h or pycore_signal.h.
10
- # include <winsock2.h>
11
- # include <windows.h>
12
- #endif
13
-
14
7
#include "pycore_atomic.h" // _Py_atomic_int
15
8
#include "pycore_call.h" // _PyObject_Call()
16
9
#include "pycore_ceval.h" // _PyEval_SignalReceived()
Original file line number Diff line number Diff line change 2
2
3
3
#include "Python.h"
4
4
5
- #ifdef MS_WINDOWS
6
- // These must be included before pycore_runtime.h.
7
- # include <winsock2.h>
8
- # include "windows.h"
9
- #endif
10
-
11
5
#include "pycore_bytesobject.h" // _PyBytes_InitTypes()
12
6
#include "pycore_ceval.h" // _PyEval_FiniGIL()
13
7
#include "pycore_context.h" // _PyContext_Init()
Original file line number Diff line number Diff line change 2
2
/* Thread and interpreter state structures and their interfaces */
3
3
4
4
#include "Python.h"
5
-
6
- #ifdef MS_WINDOWS
7
- // These must be included before pycore_runtime.h.
8
- # include <winsock2.h>
9
- # include "windows.h"
10
- #endif
11
-
12
5
#include "pycore_ceval.h"
13
6
#include "pycore_code.h" // stats
14
7
#include "pycore_frame.h"
You can’t perform that action at this time.
0 commit comments