We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0ddfd commit 6fd8c59Copy full SHA for 6fd8c59
Include/import.h
@@ -94,11 +94,13 @@ typedef enum {
94
PyImport_LAZY_NONE,
95
} PyImport_LazyImportsMode;
96
97
+#ifndef Py_LIMITED_API
98
PyAPI_FUNC(int) PyImport_SetLazyImportsMode(PyImport_LazyImportsMode mode);
99
PyAPI_FUNC(int) PyImport_SetLazyImportsFilter(PyObject *filter);
100
101
PyAPI_FUNC(PyImport_LazyImportsMode) PyImport_GetLazyImportsMode(void);
102
PyAPI_FUNC(PyObject *) PyImport_GetLazyImportsFilter(void);
103
+#endif
104
105
#ifndef Py_LIMITED_API
106
# define Py_CPYTHON_IMPORT_H
0 commit comments