File tree 6 files changed +0
-32
lines changed
6 files changed +0
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ extern "C" {
21
21
#include "pycore_pymem.h" // struct _pymem_allocators
22
22
#include "pycore_pyhash.h" // struct pyhash_runtime_state
23
23
#include "pycore_obmalloc.h" // struct obmalloc_state
24
- #include "pycore_os.h" // struct _os_runtime_state
25
24
#include "pycore_time.h" // struct _time_runtime_state
26
25
#include "pycore_unicodeobject.h" // struct _Py_unicode_runtime_ids
27
26
@@ -105,7 +104,6 @@ typedef struct pyruntimestate {
105
104
* KeyboardInterrupt exception, suggesting the user pressed ^C. */
106
105
int unhandled_keyboard_interrupt ;
107
106
} signals ;
108
- struct _os_runtime_state os ;
109
107
struct _time_runtime_state time ;
110
108
111
109
struct pyinterpreters {
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ extern "C" {
26
26
}, \
27
27
.obmalloc = _obmalloc_state_INIT(runtime.obmalloc), \
28
28
.pyhash_state = pyhash_state_INIT, \
29
- .os = _OS_RUNTIME_INIT, \
30
29
.interpreters = { \
31
30
/* This prevents interpreters from getting created \
32
31
until _PyInterpreterState_Enable() is called. */ \
Original file line number Diff line number Diff line change @@ -1654,7 +1654,6 @@ PYTHON_HEADERS= \
1654
1654
$(srcdir)/Include/internal/pycore_object.h \
1655
1655
$(srcdir)/Include/internal/pycore_obmalloc.h \
1656
1656
$(srcdir)/Include/internal/pycore_obmalloc_init.h \
1657
- $(srcdir)/Include/internal/pycore_os.h \
1658
1657
$(srcdir)/Include/internal/pycore_pathconfig.h \
1659
1658
$(srcdir)/Include/internal/pycore_pyarena.h \
1660
1659
$(srcdir)/Include/internal/pycore_pyerrors.h \
Original file line number Diff line number Diff line change 236
236
<ClInclude Include =" ..\Include\internal\pycore_object.h" />
237
237
<ClInclude Include =" ..\Include\internal\pycore_obmalloc.h" />
238
238
<ClInclude Include =" ..\Include\internal\pycore_obmalloc_init.h" />
239
- <ClInclude Include =" ..\Include\internal\pycore_os.h" />
240
239
<ClInclude Include =" ..\Include\internal\pycore_pathconfig.h" />
241
240
<ClInclude Include =" ..\Include\internal\pycore_pyarena.h" />
242
241
<ClInclude Include =" ..\Include\internal\pycore_pyerrors.h" />
Original file line number Diff line number Diff line change 612
612
<ClInclude Include =" ..\Include\internal\pycore_obmalloc_init.h" >
613
613
<Filter >Include\internal</Filter >
614
614
</ClInclude >
615
- <ClInclude Include =" ..\Include\internal\pycore_os.h" >
616
- <Filter >Include\internal</Filter >
617
- </ClInclude >
618
615
<ClInclude Include =" ..\Include\internal\pycore_pathconfig.h" >
619
616
<Filter >Include\internal</Filter >
620
617
</ClInclude >
You can’t perform that action at this time.
0 commit comments