This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +15
-13
lines changed Expand file tree Collapse file tree 10 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ extern "C" {
7
7
#endif
8
8
9
9
#ifdef STACKLESS
10
- #include "slp_exttype.h"
10
+ #include "cpython/ slp_exttype.h"
11
11
#endif
12
12
13
13
/********************* String Literals ****************************************/
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ extern "C" {
38
38
39
39
#ifdef STACKLESS
40
40
41
- #include "slp_structs.h"
41
+ #include "cpython/ slp_structs.h"
42
42
43
43
/*
44
44
* create a new tasklet object.
Original file line number Diff line number Diff line change @@ -1081,9 +1081,10 @@ PYTHON_HEADERS= \
1081
1081
$(srcdir)/Include/weakrefobject.h \
1082
1082
$(srcdir)/Include/stackless.h \
1083
1083
$(srcdir)/Include/stackless_api.h \
1084
- $(srcdir)/Include/stackless_version.h \
1085
- $(srcdir)/Include/slp_structs .h \
1084
+ $(srcdir)/Include/cpython/ stackless_version.h \
1085
+ $(srcdir)/Include/cpython/slp_exttype .h \
1086
1086
$(srcdir)/Include/cpython/slp_tstate.h \
1087
+ $(srcdir)/Include/cpython/slp_structs.h \
1087
1088
$(srcdir)/Include/internal/pycore_stackless.h \
1088
1089
$(srcdir)/Include/internal/pycore_slp_pystate.h \
1089
1090
$(srcdir)/Include/internal/pycore_slp_prickelpit.h \
Original file line number Diff line number Diff line change 231
231
<ClInclude Include =" ..\Python\importdl.h" />
232
232
<ClInclude Include =" ..\Python\thread_nt.h" />
233
233
<ClInclude Include =" ..\Python\wordcode_helpers.h" />
234
- <ClInclude Include =" ..\Include\slp_exttype.h" />
235
- <ClInclude Include =" ..\Include\slp_structs.h" />
234
+ <ClInclude Include =" ..\Include\cpython\stackless_version.h" />
235
+ <ClInclude Include =" ..\Include\cpython\slp_exttype.h" />
236
+ <ClInclude Include =" ..\Include\cpython\slp_structs.h" />
236
237
<ClInclude Include =" ..\Include\cpython\slp_tstate.h" />
237
238
<ClInclude Include =" ..\Include\internal\pycore_stackless.h" />
238
239
<ClInclude Include =" ..\Include\internal\pycore_slp_pystate.h" />
242
243
<ClInclude Include =" ..\Include\internal\pycore_slp_switch_x86_msvc.h" />
243
244
<ClInclude Include =" ..\Include\stackless.h" />
244
245
<ClInclude Include =" ..\Include\stackless_api.h" />
245
- <ClInclude Include =" ..\Include\stackless_version.h" />
246
246
</ItemGroup >
247
247
<ItemGroup Condition =" $(IncludeExternals)" >
248
248
<ClInclude Include =" $(zlibDir)\crc32.h" />
Original file line number Diff line number Diff line change 507
507
<ClInclude Include =" ..\Include\stackless_api.h" >
508
508
<Filter >Include</Filter >
509
509
</ClInclude >
510
- <ClInclude Include =" ..\Include\stackless_version.h" >
510
+ <ClInclude Include =" ..\Include\cpython\ stackless_version.h" >
511
511
<Filter >Include</Filter >
512
512
</ClInclude >
513
- <ClInclude Include =" ..\Include\slp_exttype.h" >
513
+ <ClInclude Include =" ..\Include\cpython\ slp_exttype.h" >
514
514
<Filter >Include</Filter >
515
515
</ClInclude >
516
- <ClInclude Include =" ..\Include\slp_structs.h" >
516
+ <ClInclude Include =" ..\Include\cpython\ slp_structs.h" >
517
517
<Filter >Include</Filter >
518
518
</ClInclude >
519
519
<ClInclude Include =" ..\Include\cpython\slp_tstate.h" >
Original file line number Diff line number Diff line change 7
7
8
8
#ifdef STACKLESS
9
9
/* avoiding to recompile everything for Stackless all the time */
10
- #include "stackless_version.h"
10
+ #include "cpython/ stackless_version.h"
11
11
12
12
const char *
13
13
Py_GetVersion (void )
Original file line number Diff line number Diff line change @@ -24,8 +24,9 @@ What's New in Stackless 3.X.X?
24
24
from outside of the interpreter (with no main-tasklet).
25
25
26
26
- https://github.com/stackless-dev/stackless/issues/264
27
- Implement bpo-35134 for Stackless: move header Include/slp_tstate.h to
28
- Include/cpython/slp_tstate.h.
27
+ Implement bpo-35134 for Stackless: move header Include/slp_tstate.h,
28
+ Include/slp_exttype.h, Include/slp_structs.h and Include/stackless_version.h
29
+ to Include/cpython/.
29
30
30
31
- https://github.com/stackless-dev/stackless/issues/263
31
32
Implement bpo-35081 for Stackless: Prefix header files in Include/internal/
You can’t perform that action at this time.
0 commit comments