📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-27 19:13:14
📂
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
/
tests
/
examples
/
limited_api
✏️
Editing: limited_api.c
#define Py_LIMITED_API 0x03060000 #include <Python.h> #include <numpy/arrayobject.h> #include <numpy/ufuncobject.h> static PyModuleDef moduledef = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "limited_api" }; PyMODINIT_FUNC PyInit_limited_api(void) { import_array(); import_umath(); return PyModule_Create(&moduledef); }
💾 Save Changes
❌ Cancel