PATH:
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
/
tests
/
examples
/
limited_api
#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); }
[+]
..
[+]
__pycache__
[-] limited_api.c
[open]
[-] setup.py
[open]