Searched refs:PyImport_AppendInittab (Results 1 – 18 of 18) sorted by relevance
/third_party/boost/libs/python/example/numpy/ |
D | wrap.cpp | 115 PyImport_AppendInittab("example", &PyInit_example); in main() 117 PyImport_AppendInittab("example", &initexample); in main()
|
/third_party/python/Include/ |
D | import.h | 84 PyAPI_FUNC(int) PyImport_AppendInittab(
|
/third_party/boost/libs/python/example/quickstart/ |
D | embedding.cpp | 56 if (PyImport_AppendInittab("embedded_hello", initembedded_hello) == -1) in exec_test()
|
/third_party/boost/libs/python/test/ |
D | exec.cpp | 147 if (PyImport_AppendInittab(const_cast<char*>("embedded_hello"), in main()
|
/third_party/python/Doc/c-api/ |
D | import.rst | 270 .. c:function:: int PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) 304 If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` or
|
D | init_config.rst | 1194 If :c:func:`PyImport_FrozenModules`, :c:func:`PyImport_AppendInittab` or 1197 initialized multiple times, :c:func:`PyImport_AppendInittab` or
|
D | module.rst | 133 (where the initialization function is added using :c:func:`PyImport_AppendInittab`).
|
D | init.rst | 26 * :c:func:`PyImport_AppendInittab`
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b4.rst | 426 value at exit. It must be possible to call :c:func:`PyImport_AppendInittab`
|
/third_party/python/PC/ |
D | python3dll.c | 281 EXPORT_FUNC(PyImport_AppendInittab)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 292 function,PyImport_AppendInittab,3.2,
|
/third_party/python/Programs/ |
D | _testembed.c | 1774 if (PyImport_AppendInittab(EMBEDDED_EXT_NAME, in test_repeated_init_and_inittab()
|
/third_party/python/Doc/extending/ |
D | embedding.rst | 250 PyImport_AppendInittab("emb", &PyInit_emb);
|
D | extending.rst | 383 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/ |
D | import.c | 2285 PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) in PyImport_AppendInittab() function
|
/third_party/python/Misc/ |
D | stable_abi.txt | 760 function PyImport_AppendInittab
|
D | HISTORY | 13116 - 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/ |
D | tutorial.qbk | 1298 [def PyImport_AppendInittab [@http://www.python.org/doc/current/api/importing.html#l2h-137 Py…
|