Home
last modified time | relevance | path

Searched refs:PyImport_AppendInittab (Results 1 – 18 of 18) sorted by relevance

/third_party/boost/libs/python/example/numpy/
Dwrap.cpp115 PyImport_AppendInittab("example", &PyInit_example); in main()
117 PyImport_AppendInittab("example", &initexample); in main()
/third_party/python/Include/
Dimport.h84 PyAPI_FUNC(int) PyImport_AppendInittab(
/third_party/boost/libs/python/example/quickstart/
Dembedding.cpp56 if (PyImport_AppendInittab("embedded_hello", initembedded_hello) == -1) in exec_test()
/third_party/boost/libs/python/test/
Dexec.cpp147 if (PyImport_AppendInittab(const_cast<char*>("embedded_hello"), in main()
/third_party/python/Doc/c-api/
Dimport.rst270 .. c:function:: int PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
304 If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` or
Dinit_config.rst1194 If :c:func:`PyImport_FrozenModules`, :c:func:`PyImport_AppendInittab` or
1197 initialized multiple times, :c:func:`PyImport_AppendInittab` or
Dmodule.rst133 (where the initialization function is added using :c:func:`PyImport_AppendInittab`).
Dinit.rst26 * :c:func:`PyImport_AppendInittab`
/third_party/python/Misc/NEWS.d/
D3.10.0b4.rst426 value at exit. It must be possible to call :c:func:`PyImport_AppendInittab`
/third_party/python/PC/
Dpython3dll.c281 EXPORT_FUNC(PyImport_AppendInittab)
/third_party/python/Doc/data/
Dstable_abi.dat292 function,PyImport_AppendInittab,3.2,
/third_party/python/Programs/
D_testembed.c1774 if (PyImport_AppendInittab(EMBEDDED_EXT_NAME, in test_repeated_init_and_inittab()
/third_party/python/Doc/extending/
Dembedding.rst250 PyImport_AppendInittab("emb", &PyInit_emb);
Dextending.rst383 To add the module to the initialization table, use :c:func:`PyImport_AppendInittab`,
396 if (PyImport_AppendInittab("spam", PyInit_spam) == -1) {
/third_party/python/Python/
Dimport.c2285 PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) in PyImport_AppendInittab() function
/third_party/python/Misc/
Dstable_abi.txt760 function PyImport_AppendInittab
DHISTORY13116 - Issue #1419652: Change the first argument to PyImport_AppendInittab() to
29239 - New APIs PyImport_AppendInittab() and PyImport_ExtendInittab() to
/third_party/boost/libs/python/doc/
Dtutorial.qbk1298 [def PyImport_AppendInittab [@http://www.python.org/doc/current/api/importing.html#l2h-137 Py…