mirror of
https://github.com/python/cpython.git
synced 2026-02-22 15:10:47 +00:00
Co-authored-by: T. Wouters <twouters@meta.com > Co-authored-by: Brittany Reynoso <breynoso@meta.com> Co-authored-by: Dino Viehland <dinoviehland@meta.com>
109 lines
2.9 KiB
C
109 lines
2.9 KiB
C
#include "parts.h"
|
|
#include "util.h"
|
|
|
|
// Test PyImport_ImportModuleAttr()
|
|
static PyObject *
|
|
pyimport_importmoduleattr(PyObject *self, PyObject *args)
|
|
{
|
|
PyObject *mod_name, *attr_name;
|
|
if (!PyArg_ParseTuple(args, "OO", &mod_name, &attr_name)) {
|
|
return NULL;
|
|
}
|
|
NULLABLE(mod_name);
|
|
NULLABLE(attr_name);
|
|
|
|
return PyImport_ImportModuleAttr(mod_name, attr_name);
|
|
}
|
|
|
|
|
|
// Test PyImport_ImportModuleAttrString()
|
|
static PyObject *
|
|
pyimport_importmoduleattrstring(PyObject *self, PyObject *args)
|
|
{
|
|
const char *mod_name, *attr_name;
|
|
Py_ssize_t len;
|
|
if (!PyArg_ParseTuple(args, "z#z#", &mod_name, &len, &attr_name, &len)) {
|
|
return NULL;
|
|
}
|
|
|
|
return PyImport_ImportModuleAttrString(mod_name, attr_name);
|
|
}
|
|
|
|
|
|
static PyObject *
|
|
pyimport_setlazyimportsmode(PyObject *self, PyObject *args)
|
|
{
|
|
PyObject *mode;
|
|
if (!PyArg_ParseTuple(args, "U", &mode)) {
|
|
return NULL;
|
|
}
|
|
if (strcmp(PyUnicode_AsUTF8(mode), "normal") == 0) {
|
|
PyImport_SetLazyImportsMode(PyImport_LAZY_NORMAL);
|
|
} else if (strcmp(PyUnicode_AsUTF8(mode), "all") == 0) {
|
|
PyImport_SetLazyImportsMode(PyImport_LAZY_ALL);
|
|
} else if (strcmp(PyUnicode_AsUTF8(mode), "none") == 0) {
|
|
PyImport_SetLazyImportsMode(PyImport_LAZY_NONE);
|
|
} else {
|
|
PyErr_SetString(PyExc_ValueError, "invalid mode");
|
|
return NULL;
|
|
}
|
|
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static PyObject *
|
|
pyimport_getlazyimportsmode(PyObject *self, PyObject *args)
|
|
{
|
|
switch (PyImport_GetLazyImportsMode()) {
|
|
case PyImport_LAZY_NORMAL:
|
|
return PyUnicode_FromString("normal");
|
|
case PyImport_LAZY_ALL:
|
|
return PyUnicode_FromString("all");
|
|
case PyImport_LAZY_NONE:
|
|
return PyUnicode_FromString("none");
|
|
default:
|
|
PyErr_SetString(PyExc_ValueError, "unknown mode");
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
static PyObject *
|
|
pyimport_setlazyimportsfilter(PyObject *self, PyObject *args)
|
|
{
|
|
PyObject *filter;
|
|
if (!PyArg_ParseTuple(args, "O", &filter)) {
|
|
return NULL;
|
|
}
|
|
|
|
if (PyImport_SetLazyImportsFilter(filter) < 0) {
|
|
return NULL;
|
|
}
|
|
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static PyObject *
|
|
pyimport_getlazyimportsfilter(PyObject *self, PyObject *args)
|
|
{
|
|
PyObject *res = PyImport_GetLazyImportsFilter();
|
|
if (res == NULL) {
|
|
Py_RETURN_NONE;
|
|
}
|
|
return res;
|
|
}
|
|
|
|
static PyMethodDef test_methods[] = {
|
|
{"PyImport_ImportModuleAttr", pyimport_importmoduleattr, METH_VARARGS},
|
|
{"PyImport_ImportModuleAttrString", pyimport_importmoduleattrstring, METH_VARARGS},
|
|
{"PyImport_SetLazyImportsMode", pyimport_setlazyimportsmode, METH_VARARGS},
|
|
{"PyImport_GetLazyImportsMode", pyimport_getlazyimportsmode, METH_NOARGS},
|
|
{"PyImport_SetLazyImportsFilter", pyimport_setlazyimportsfilter, METH_VARARGS},
|
|
{"PyImport_GetLazyImportsFilter", pyimport_getlazyimportsfilter, METH_NOARGS},
|
|
{NULL},
|
|
};
|
|
|
|
int
|
|
_PyTestCapi_Init_Import(PyObject *m)
|
|
{
|
|
return PyModule_AddFunctions(m, test_methods);
|
|
}
|