Home
last modified time | relevance | path

Searched refs:PyModule_FromDefAndSpec (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/
Dmodsupport.h168 #define PyModule_FromDefAndSpec(module, spec) \ macro
171 #define PyModule_FromDefAndSpec(module, spec) \ macro
/external/python/cpython3/Doc/c-api/
Dmodule.rst349 objects dynamically. Note that both ``PyModule_FromDefAndSpec`` and
352 .. c:function:: PyObject * PyModule_FromDefAndSpec(PyModuleDef *def, PyObject *spec)
369 Most uses of this function should be using :c:func:`PyModule_FromDefAndSpec`
385 ``PyModule_FromDefAndSpec``.
398 ``PyModule_FromDefAndSpec``.
/external/python/cpython3/Python/
Dimportdl.c188 return PyModule_FromDefAndSpec((PyModuleDef*)m, spec); in _PyImport_LoadDynamicModuleWithSpec()
Dimport.c1075 return PyModule_FromDefAndSpec((PyModuleDef*)mod, spec); in _imp_create_builtin()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2201 New :c:func:`PyModule_FromDefAndSpec`, :c:func:`PyModule_FromDefAndSpec2`,