Submit
Path:
~
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
core
/
tests
/
examples
/
limited_api
/
File Content:
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); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
__pycache__
---
0755
limited_api.c
344 bytes
0644
setup.py
435 bytes
0644
N4ST4R_ID | Naxtarrr