File tree 4 files changed +7
-2
lines changed
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 169
169
@MODULE__XXTESTFUZZ_TRUE@_xxtestfuzz _xxtestfuzz/_xxtestfuzz.c _xxtestfuzz/fuzzer.c
170
170
@MODULE__TESTBUFFER_TRUE@_testbuffer _testbuffer.c
171
171
@MODULE__TESTINTERNALCAPI_TRUE@_testinternalcapi _testinternalcapi.c
172
- @MODULE__TESTCAPI_TRUE@_testcapi _testcapimodule.c _testcapi/vectorcall.c _testcapi/vectorcall_limited.c _testcapi/heaptype.c _testcapi/unicode.c _testcapi/getargs.c _testcapi/pytime.c _testcapi/datetime.c _testcapi/docstring.c _testcapi/mem.c _testcapi/watchers.c _testcapi/long.c _testcapi/float.c _testcapi/structmember.c _testcapi/exceptions.c _testcapi/code.c _testcapi/pyos.c
172
+ @MODULE__TESTCAPI_TRUE@_testcapi _testcapimodule.c _testcapi/vectorcall.c _testcapi/vectorcall_limited.c _testcapi/heaptype.c _testcapi/unicode.c _testcapi/getargs.c _testcapi/pytime.c _testcapi/datetime.c _testcapi/docstring.c _testcapi/mem.c _testcapi/watchers.c _testcapi/long.c _testcapi/float.c _testcapi/structmember.c _testcapi/exceptions.c _testcapi/code.c _testcapi/pyos.c _testcapi/immortal.c
173
173
@MODULE__TESTCLINIC_TRUE@_testclinic _testclinic.c
174
174
175
175
# Some testing modules MUST be built as shared libraries.
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ int _PyTestCapi_Init_Structmember(PyObject *module);
39
39
int _PyTestCapi_Init_Exceptions (PyObject * module );
40
40
int _PyTestCapi_Init_Code (PyObject * module );
41
41
int _PyTestCapi_Init_PyOS (PyObject * module );
42
+ int _PyTestCapi_Init_Immortal (PyObject * module );
42
43
43
44
#ifdef LIMITED_API_AVAILABLE
44
45
int _PyTestCapi_Init_VectorcallLimited (PyObject * module );
Original file line number Diff line number Diff line change @@ -4210,6 +4210,9 @@ PyInit__testcapi(void)
4210
4210
if (_PyTestCapi_Init_PyOS (m ) < 0 ) {
4211
4211
return NULL ;
4212
4212
}
4213
+ if (_PyTestCapi_Init_Immortal (m ) < 0 ) {
4214
+ return NULL ;
4215
+ }
4213
4216
4214
4217
#ifndef LIMITED_API_AVAILABLE
4215
4218
PyModule_AddObjectRef (m , "LIMITED_API_AVAILABLE" , Py_False );
Original file line number Diff line number Diff line change 110
110
<ClCompile Include =" ..\Modules\_testcapi\exceptions.c" />
111
111
<ClCompile Include =" ..\Modules\_testcapi\code.c" />
112
112
<ClCompile Include =" ..\Modules\_testcapi\pyos.c" />
113
+ <ClCompile Include =" ..\Modules\_testcapi\immortal.c" />
113
114
</ItemGroup >
114
115
<ItemGroup >
115
116
<ResourceCompile Include =" ..\PC\python_nt.rc" />
127
128
<Import Project =" $(VCTargetsPath)\Microsoft.Cpp.targets" />
128
129
<ImportGroup Label =" ExtensionTargets" >
129
130
</ImportGroup >
130
- </Project >
131
+ </Project >
You can’t perform that action at this time.
0 commit comments