同步操作将从 OpenHarmony-SIG/python 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/** C Extension module to test Python internal C APIs (Include/internal).*/#if !defined(Py_BUILD_CORE_BUILTIN) && !defined(Py_BUILD_CORE_MODULE)# error "Py_BUILD_CORE_BUILTIN or Py_BUILD_CORE_MODULE must be defined"#endif#define PY_SSIZE_T_CLEAN#include "Python.h"#include "pycore_initconfig.h"#ifdef MS_WINDOWS#include <windows.h>static int_add_windows_config(PyObject *configs){HMODULE hPython3;wchar_t py3path[MAX_PATH];PyObject *dict = PyDict_New();PyObject *obj = NULL;if (!dict) {return -1;}hPython3 = GetModuleHandleW(PY3_DLLNAME);if (hPython3 && GetModuleFileNameW(hPython3, py3path, MAX_PATH)) {obj = PyUnicode_FromWideChar(py3path, -1);} else {obj = Py_None;Py_INCREF(obj);}if (obj &&!PyDict_SetItemString(dict, "python3_dll", obj) &&!PyDict_SetItemString(configs, "windows", dict)) {Py_DECREF(obj);Py_DECREF(dict);return 0;}Py_DECREF(obj);Py_DECREF(dict);return -1;}#endifstatic PyObject *get_configs(PyObject *self, PyObject *Py_UNUSED(args)){PyObject *dict = _Py_GetConfigsAsDict();#ifdef MS_WINDOWSif (dict) {if (_add_windows_config(dict) < 0) {Py_CLEAR(dict);}}#endifreturn dict;}static PyMethodDef TestMethods[] = {{"get_configs", get_configs, METH_NOARGS},{NULL, NULL} /* sentinel */};static struct PyModuleDef _testcapimodule = {PyModuleDef_HEAD_INIT,"_testinternalcapi",NULL,-1,TestMethods,NULL,NULL,NULL,NULL};PyMODINIT_FUNCPyInit__testinternalcapi(void){return PyModule_Create(&_testcapimodule);}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。